5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 22:06:22 +00:00
panel/Dockerfile

136 lines
4.6 KiB
Text
Raw Normal View History

ARG ALPINE_VERSION=3.13.6
ARG BASE_IMAGE=alpine
ARG REGISTRY=registry.nulo.in
ARG BRANCH=rails
ARG BUNDLER_VERSION=2.1.4
ARG RUBY_VERSION=2.7
ARG RUBY_PATCH=4
ARG RAILS_MASTER_KEY
2019-07-26 23:57:11 +00:00
# Este Dockerfile está armado pensando en una compilación lanzada desde
# el mismo repositorio de trabajo. Cuando tengamos CI/CD algunas cosas
# como el tarball van a tener que cambiar porque ya vamos a haber hecho
# un clone/pull limpio.
FROM alpine:${ALPINE_VERSION} AS build
2019-07-26 23:57:11 +00:00
MAINTAINER "f <f@sutty.nl>"
# Un entorno base
ENV BRANCH=${BRANCH}
ENV SECRET_KEY_BASE=solo_es_necesaria_para_correr_rake
ENV RAILS_ENV=production
ENV RAILS_MASTER_KEY=${RAILS_MASTER_KEY}
ENV BUNDLER_VERSION=${BUNDLER_VERSION}
ENV RUBY_VERSION=${RUBY_VERSION}
ENV RUBY_PATCH=${RUBY_PATCH}
2019-07-26 23:57:11 +00:00
RUN apk add --no-cache libxslt libxml2 tzdata ruby ruby-json ruby-bigdecimal ruby-rake
2020-09-26 21:19:09 +00:00
RUN apk add --no-cache postgresql-libs git yarn brotli libssh2 python3
2019-11-16 23:13:30 +00:00
RUN test "${RUBY_VERSION}.${RUBY_PATCH}" = `ruby -e 'puts RUBY_VERSION'`
2019-11-16 23:13:30 +00:00
# https://github.com/rubygems/rubygems/issues/2918
# https://gitlab.alpinelinux.org/alpine/aports/issues/10808
2020-09-26 21:19:09 +00:00
RUN apk add --no-cache patch
2019-11-16 23:13:30 +00:00
COPY ./rubygems-platform-musl.patch /tmp/
RUN cd /usr/lib/ruby/${RUBY_VERSION}.0 && patch -Np 0 -i /tmp/rubygems-platform-musl.patch
2019-11-16 23:13:30 +00:00
# Agregar el usuario
RUN addgroup -g 82 -S www-data
RUN adduser -s /bin/sh -G www-data -h /home/app -D app
2019-11-18 17:10:05 +00:00
RUN install -dm750 -o app -g www-data /home/app/sutty
RUN gem install --no-document bundler:${BUNDLE_VERSION}
2019-07-26 23:57:11 +00:00
2019-11-16 23:13:30 +00:00
# Empezamos con la usuaria app
2019-07-26 23:57:11 +00:00
USER app
# Vamos a trabajar dentro de este directorio
WORKDIR /home/app/sutty
# Copiamos solo el Gemfile para poder instalar las gemas necesarias
COPY --chown=app:www-data ./Gemfile .
COPY --chown=app:www-data ./Gemfile.lock .
RUN bundle config set no-cache true
RUN bundle config set specific_platform true
2020-09-27 17:20:17 +00:00
RUN bundle install --path=./vendor --without='test development'
2019-07-26 23:57:11 +00:00
# Vaciar la caché
RUN rm vendor/ruby/${RUBY_VERSION}.0/cache/*.gem
2019-07-26 23:57:11 +00:00
# Copiar el repositorio git
COPY --chown=app:www-data ./.git/ ./.git/
2019-11-16 23:13:30 +00:00
# Hacer un clon limpio del repositorio en lugar de copiar todos los
# archivos
RUN cd .. && git clone sutty checkout
RUN cd ../checkout && git checkout ${BRANCH}
2019-11-16 23:13:30 +00:00
WORKDIR /home/app/checkout
# Traer las gemas:
RUN rm -rf ./vendor
2019-11-18 17:10:05 +00:00
RUN mv ../sutty/vendor ./vendor
RUN mv ../sutty/.bundle ./.bundle
2019-07-26 23:57:11 +00:00
2020-10-05 18:20:03 +00:00
RUN rm -rf ./node_modules ./tmp/cache ./.git ./test ./doc
# Eliminar archivos innecesarios
2020-10-05 21:42:13 +00:00
USER root
RUN apk add --no-cache findutils
RUN find /home/app/checkout/vendor/ruby/${RUBY_VERSION}.0 -maxdepth 3 -type d -name test -o -name spec -o -name rubocop | xargs -r rm -rf
2019-07-29 18:15:23 +00:00
2019-07-26 23:57:11 +00:00
# Contenedor final
FROM ${REGISTRY}/sutty/monit:${ALPINE_VERSION}
ARG RUBY_VERSION=2.7
ARG RUBY_PATCH=4
ENV RAILS_ENV=production
ENV BUNDLER_VERSION=${BUNDLER_VERSION}
ENV RUBY_VERSION=${RUBY_VERSION}
ENV RUBY_PATCH=${RUBY_PATCH}
2019-07-26 23:57:11 +00:00
# Pandoc
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories
2019-07-26 23:57:11 +00:00
# Instalar las dependencias, separamos la librería de base de datos para
# poder reutilizar este primer paso desde otros contenedores
2021-10-26 19:45:05 +00:00
# Necesitamos yarn para que Jekyll pueda generar los sitios
# XXX: Eliminarlo cuando extraigamos la generación de sitios del proceso
# principal
RUN apk add --no-cache libxslt libxml2 tzdata postgresql-libs jemalloc daemonize
RUN apk add --no-cache ruby ruby-json ruby-bigdecimal ruby-rake ruby-irb ruby-io-console ruby-etc ruby-webrick
RUN apk add --no-cache file jpegoptim vips ffmpeg pandoc tectonic oxipng
RUN apk add --no-cache libssh2 openssh-client git git-lfs patch yarn
2019-11-15 13:33:32 +00:00
# Chequear que la versión de ruby sea la correcta
RUN test "${RUBY_VERSION}.${RUBY_PATCH}" = `ruby -e 'puts RUBY_VERSION'`
2019-11-15 13:33:32 +00:00
COPY --from=build /usr/lib/ruby/${RUBY_VERSION}.0/rubygems.rb \
/usr/lib/ruby/${RUBY_VERSION}.0/rubygems.rb
2019-11-16 23:13:30 +00:00
2019-07-26 23:57:11 +00:00
# Instalar foreman para poder correr los servicios
RUN gem install --no-document --no-user-install bundler:${BUNDLER_VERSION} foreman
2019-07-26 23:57:11 +00:00
2019-11-16 23:13:30 +00:00
# Agregar el grupo del servidor web y la usuaria
2019-07-26 23:57:11 +00:00
RUN addgroup -g 82 -S www-data
RUN adduser -s /bin/sh -G www-data -h /srv/http -D app
# Convertirse en app para instalar
USER app
2019-11-16 23:13:30 +00:00
COPY --from=build --chown=app:www-data /home/app/checkout /srv/http
COPY --chown=app:www-data ./.git/ ./.git/
RUN rm -rf /srv/http/_sites /srv/http/_deploy
RUN ln -s data/_storage /srv/http/_storage
RUN ln -s data/_sites /srv/http/_sites
RUN ln -s data/_deploy /srv/http/_deploy
RUN ln -s data/_private /srv/http/_private
2019-07-26 23:57:11 +00:00
# Volver a root para cerrar la compilación
USER root
2021-10-26 19:45:05 +00:00
2019-11-18 17:10:05 +00:00
# Instalar la configuración de monit
RUN install -m 640 -o root -g root /srv/http/monit.conf /etc/monit.d/sutty.conf
2020-09-27 17:04:11 +00:00
RUN install -m 755 /srv/http/entrypoint.sh /usr/local/bin/sutty
2019-07-26 23:57:11 +00:00
# Mantener estos directorios!
VOLUME "/srv/http/data"
2019-07-26 23:57:11 +00:00
# El puerto de puma
EXPOSE 3000
2020-09-22 18:17:59 +00:00
EXPOSE 9394