mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:06:23 +00:00
Generar assets fuera del contenedor
Ahorra tiempo y recursos!
This commit is contained in:
parent
f4aabce866
commit
075ba9fdc4
4 changed files with 62 additions and 34 deletions
|
@ -1,20 +1,20 @@
|
||||||
Dockerfile
|
Dockerfile
|
||||||
node_modules/
|
node_modules
|
||||||
tmp/
|
tmp
|
||||||
log/
|
log
|
||||||
public/
|
docs
|
||||||
docs/
|
bin
|
||||||
bin/
|
db
|
||||||
db/
|
lib
|
||||||
lib/
|
test
|
||||||
test/
|
tmp
|
||||||
tmp/
|
vendor
|
||||||
vendor/
|
|
||||||
config.ru
|
config.ru
|
||||||
LICENSE
|
LICENSE
|
||||||
Makefile
|
Makefile
|
||||||
monit.conf
|
monit.conf
|
||||||
README.md
|
README.md
|
||||||
TODO*
|
TODO*
|
||||||
_deploy/
|
_deploy
|
||||||
_sites/
|
_sites
|
||||||
|
_storage
|
||||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -35,6 +35,10 @@
|
||||||
|
|
||||||
/public/packs
|
/public/packs
|
||||||
/public/packs-test
|
/public/packs-test
|
||||||
|
/public/assets
|
||||||
|
/public/assets-production
|
||||||
|
/public/packs
|
||||||
|
/public/packs-production
|
||||||
/node_modules
|
/node_modules
|
||||||
/yarn-error.log
|
/yarn-error.log
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
|
|
27
Dockerfile
27
Dockerfile
|
@ -2,12 +2,7 @@
|
||||||
# el mismo repositorio de trabajo. Cuando tengamos CI/CD algunas cosas
|
# 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
|
# como el tarball van a tener que cambiar porque ya vamos a haber hecho
|
||||||
# un clone/pull limpio.
|
# un clone/pull limpio.
|
||||||
FROM sutty/oxipng:latest AS oxipng
|
FROM alpine:3.11.6 AS build
|
||||||
FROM sutty/jemalloc:latest AS jemalloc
|
|
||||||
RUN echo /home/builder/packages/home > /etc/apk/repositories
|
|
||||||
RUN apk add --no-cache jemalloc
|
|
||||||
|
|
||||||
FROM alpine:3.11.6 as build
|
|
||||||
MAINTAINER "f <f@sutty.nl>"
|
MAINTAINER "f <f@sutty.nl>"
|
||||||
|
|
||||||
ARG RAILS_MASTER_KEY
|
ARG RAILS_MASTER_KEY
|
||||||
|
@ -31,7 +26,7 @@ RUN cd /usr/lib/ruby/2.6.0 && patch -Np 0 -i /tmp/rubygems-platform-musl.patch
|
||||||
RUN addgroup -g 82 -S www-data
|
RUN addgroup -g 82 -S www-data
|
||||||
RUN adduser -s /bin/sh -G www-data -h /home/app -D app
|
RUN adduser -s /bin/sh -G www-data -h /home/app -D app
|
||||||
RUN install -dm750 -o app -g www-data /home/app/sutty
|
RUN install -dm750 -o app -g www-data /home/app/sutty
|
||||||
RUN gem install --no-document bundler:2.0.2
|
RUN gem install --no-document bundler
|
||||||
|
|
||||||
# Empezamos con la usuaria app
|
# Empezamos con la usuaria app
|
||||||
USER app
|
USER app
|
||||||
|
@ -58,10 +53,9 @@ RUN mv ../sutty/.bundle ./.bundle
|
||||||
|
|
||||||
# Instalar secretos
|
# Instalar secretos
|
||||||
COPY --chown=app:root ./config/credentials.yml.enc ./config/
|
COPY --chown=app:root ./config/credentials.yml.enc ./config/
|
||||||
# Pre-compilar los assets
|
# Traer los assets pre-compilados
|
||||||
RUN bundle exec rake assets:precompile
|
COPY --chown=app:www-data ./public/assets-production ./public/assets
|
||||||
# Comprimirlos usando brotli
|
COPY --chown=app:www-data ./public/packs-production ./public/packs
|
||||||
RUN find public -type f -name "*.gz" | sed -re "s/\.gz$//" | xargs -r brotli -k -9
|
|
||||||
|
|
||||||
# Eliminar la necesidad de un runtime JS en producción, porque los
|
# Eliminar la necesidad de un runtime JS en producción, porque los
|
||||||
# assets ya están pre-compilados.
|
# assets ya están pre-compilados.
|
||||||
|
@ -73,14 +67,14 @@ RUN rm -rf ./node_modules ./tmp/cache ./.git
|
||||||
FROM sutty/monit:latest
|
FROM sutty/monit:latest
|
||||||
ENV RAILS_ENV production
|
ENV RAILS_ENV production
|
||||||
|
|
||||||
# Instalar oxipng
|
# Pandoc
|
||||||
COPY --from=oxipng --chown=root:root /root/.cargo/bin/oxipng /usr/bin/oxipng
|
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories
|
||||||
RUN chmod 755 /usr/bin/oxipng
|
|
||||||
|
|
||||||
# Instalar las dependencias, separamos la librería de base de datos para
|
# Instalar las dependencias, separamos la librería de base de datos para
|
||||||
# poder reutilizar este primer paso desde otros contenedores
|
# poder reutilizar este primer paso desde otros contenedores
|
||||||
RUN apk add --no-cache libxslt libxml2 tzdata ruby ruby-bundler ruby-json ruby-bigdecimal ruby-rake
|
RUN apk add --no-cache libxslt libxml2 tzdata ruby ruby-bundler ruby-json ruby-bigdecimal ruby-rake ruby-irb
|
||||||
RUN apk add --no-cache postgresql-libs libssh2 file rsync git jpegoptim vips
|
RUN apk add --no-cache postgresql-libs libssh2 file rsync git jpegoptim vips
|
||||||
|
RUN apk add --no-cache ffmpeg imagemagick pandoc tectonic oxipng jemalloc
|
||||||
|
|
||||||
# Chequear que la versión de ruby sea la correcta
|
# Chequear que la versión de ruby sea la correcta
|
||||||
RUN test "2.6.6" = `ruby -e 'puts RUBY_VERSION'`
|
RUN test "2.6.6" = `ruby -e 'puts RUBY_VERSION'`
|
||||||
|
@ -112,14 +106,11 @@ RUN ln -s data/_public /srv/http/_public
|
||||||
|
|
||||||
# Volver a root para cerrar la compilación
|
# Volver a root para cerrar la compilación
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
# Sincronizar los assets a un directorio compartido
|
# Sincronizar los assets a un directorio compartido
|
||||||
RUN install -m 755 /srv/http/sync_assets.sh /usr/local/bin/sync_assets
|
RUN install -m 755 /srv/http/sync_assets.sh /usr/local/bin/sync_assets
|
||||||
# Instalar la configuración de monit
|
# Instalar la configuración de monit
|
||||||
RUN install -m 640 -o root -g root /srv/http/monit.conf /etc/monit.d/sutty.conf
|
RUN install -m 640 -o root -g root /srv/http/monit.conf /etc/monit.d/sutty.conf
|
||||||
|
|
||||||
COPY --from=jemalloc /usr/lib/libjemalloc.so.2 /usr/lib/libjemalloc.so
|
|
||||||
|
|
||||||
# Mantener estos directorios!
|
# Mantener estos directorios!
|
||||||
VOLUME "/srv/http/data"
|
VOLUME "/srv/http/data"
|
||||||
|
|
||||||
|
|
39
Makefile
39
Makefile
|
@ -3,6 +3,23 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
||||||
root_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
root_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
||||||
include $(root_dir)/.env
|
include $(root_dir)/.env
|
||||||
|
|
||||||
|
assets := package.json yarn.lock $(shell find app/assets/ app/javascript/ -type f)
|
||||||
|
|
||||||
|
public/assets-production: $(assets)
|
||||||
|
rm -rf $@
|
||||||
|
RAILS_ENV=production bundle exec rake assets:precompile
|
||||||
|
mv public/assets $@
|
||||||
|
find $@ -type f -name "*.gz" | sed -re "s/\.gz$$//" | xargs -r brotli -k -9
|
||||||
|
|
||||||
|
public/packs-production: public/packs
|
||||||
|
rm -rf $@
|
||||||
|
mv $< $@
|
||||||
|
find $@ -type f | xargs -rI {} sh -c "brotli -k -9 {}; gzip -9 -k {}"
|
||||||
|
mkdir -p $<
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
assets: public/assets-production public/packs-production
|
||||||
|
|
||||||
serve:
|
serve:
|
||||||
bundle exec rails s -b "ssl://0.0.0.0:3000?key=config/sutty.local.key&cert=config/sutty.local.crt"
|
bundle exec rails s -b "ssl://0.0.0.0:3000?key=config/sutty.local.key&cert=config/sutty.local.crt"
|
||||||
|
|
||||||
|
@ -11,11 +28,11 @@ clean:
|
||||||
rm -rf _sites/test-* _deploy/test-*
|
rm -rf _sites/test-* _deploy/test-*
|
||||||
|
|
||||||
# Generar la imagen Docker
|
# Generar la imagen Docker
|
||||||
build:
|
build: assets
|
||||||
docker build --build-arg="RAILS_MASTER_KEY=`cat config/master.key`" -t sutty/sutty .
|
time docker build --build-arg="RAILS_MASTER_KEY=`cat config/master.key`" -t sutty/sutty .
|
||||||
|
|
||||||
save:
|
save:
|
||||||
docker save sutty/sutty:latest | gzip | ssh root@sutty.nl docker load
|
time docker save sutty/sutty:latest | gzip | ssh root@sutty.nl docker load
|
||||||
|
|
||||||
load:
|
load:
|
||||||
ssh root@sutty.nl sh -c "gunzip -c sutty.latest.gz | docker load"
|
ssh root@sutty.nl sh -c "gunzip -c sutty.latest.gz | docker load"
|
||||||
|
@ -28,7 +45,9 @@ ifeq ($(MAKECMDGOALS),convert-gems)
|
||||||
gem_dir := $(shell readlink -f ../gems)
|
gem_dir := $(shell readlink -f ../gems)
|
||||||
gems := $(shell bundle show --paths | xargs -I {} sh -c 'test -f {}/ext/*/extconf.rb && basename {}')
|
gems := $(shell bundle show --paths | xargs -I {} sh -c 'test -f {}/ext/*/extconf.rb && basename {}')
|
||||||
gems += $(shell bundle show --paths | xargs -I {} sh -c 'test -f {}/ext/extconf.rb && basename {}')
|
gems += $(shell bundle show --paths | xargs -I {} sh -c 'test -f {}/ext/extconf.rb && basename {}')
|
||||||
|
gems := $(patsubst %-x86_64-linux,%,$(gems))
|
||||||
gems_musl := $(patsubst %,$(gem_dir)/%-x86_64-linux-musl.gem,$(gems))
|
gems_musl := $(patsubst %,$(gem_dir)/%-x86_64-linux-musl.gem,$(gems))
|
||||||
|
gems_gnu := $(patsubst %,$(gem_dir)/%-x86_64-linux.gem,$(gems))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(gem_dir)/%-x86_64-linux-musl.gem:
|
$(gem_dir)/%-x86_64-linux-musl.gem:
|
||||||
|
@ -39,8 +58,22 @@ $(gem_dir)/%-x86_64-linux-musl.gem:
|
||||||
-e HTTP_BASIC_PASSWORD=$(HTTP_BASIC_PASSWORD) \
|
-e HTTP_BASIC_PASSWORD=$(HTTP_BASIC_PASSWORD) \
|
||||||
-e GEM=`echo $* | sed -re "s/-[^-]+$$//"` \
|
-e GEM=`echo $* | sed -re "s/-[^-]+$$//"` \
|
||||||
-e VERSION=`echo $* | sed -re "s/.*-([^-]+)$$/\1/"` \
|
-e VERSION=`echo $* | sed -re "s/.*-([^-]+)$$/\1/"` \
|
||||||
|
-e JOBS=2 \
|
||||||
|
--rm \
|
||||||
sutty/gem-compiler:latest
|
sutty/gem-compiler:latest
|
||||||
|
|
||||||
|
$(gem_dir)/%-x86_64-linux.gem:
|
||||||
|
HTTP_BASIC_USER=$(HTTP_BASIC_USER) \
|
||||||
|
HTTP_BASIC_PASSWORD=$(HTTP_BASIC_PASSWORD) \
|
||||||
|
GEM=`echo $* | sed -re "s/-[^-]+$$//"` \
|
||||||
|
VERSION=`echo $* | sed -re "s/.*-([^-]+)$$/\1/"` && \
|
||||||
|
cd $(dir $@) && \
|
||||||
|
gem fetch --source=https://gems.sutty.nl --platform=ruby \
|
||||||
|
--version $${VERSION} $${GEM} && \
|
||||||
|
gem compile -V --prune $${GEM}-$${VERSION}.gem && \
|
||||||
|
gem inabox -o $@ \
|
||||||
|
--host https://$${HTTP_BASIC_USER}:$${HTTP_BASIC_PASSWORD}@gems.sutty.nl
|
||||||
|
|
||||||
# Compilar todas las gemas binarias y subirlas a gems.sutty.nl para que
|
# Compilar todas las gemas binarias y subirlas a gems.sutty.nl para que
|
||||||
# al crear el contenedor no tengamos que compilarlas cada vez
|
# al crear el contenedor no tengamos que compilarlas cada vez
|
||||||
convert-gems: $(gems_musl)
|
convert-gems: $(gems_musl)
|
||||||
|
|
Loading…
Reference in a new issue