cannery/Dockerfile

55 lines
1.2 KiB
Docker
Raw Normal View History

FROM elixir:1.14.1-alpine AS build
2021-09-04 16:14:51 -04:00
# install build dependencies
RUN apk add --no-cache build-base npm git python3
# prepare build dir
WORKDIR /app
# install hex + rebar
RUN mix local.hex --force && \
mix local.rebar --force
# set build ENV
ENV MIX_ENV=prod
# install mix dependencies
COPY mix.exs mix.lock ./
COPY config config
RUN mix do deps.get, deps.compile
# build assets
COPY assets/package.json assets/package-lock.json ./assets/
RUN npm --prefix ./assets ci --progress=false --no-audit --loglevel=error
COPY lib lib
COPY priv priv
COPY assets assets
RUN npm run --prefix ./assets deploy
2022-02-13 15:50:59 -05:00
RUN mix do phx.digest, gettext.extract
2021-09-04 16:14:51 -04:00
# compile and build release
# uncomment COPY if rel/ exists
# COPY rel rel
RUN mix do compile, release
# prepare release image
2022-02-18 17:44:58 -05:00
FROM alpine:latest AS app
2021-09-04 16:14:51 -04:00
RUN apk upgrade --no-cache && \
2022-12-03 22:59:43 -05:00
apk add --no-cache bash openssl libssl1.1 libcrypto1.1 libgcc libstdc++ ncurses-libs
2021-09-04 16:14:51 -04:00
WORKDIR /app
RUN chown nobody:nobody /app
USER nobody:nobody
COPY --from=build --chown=nobody:nobody /app/_build/prod/rel/cannery ./
COPY --from=build --chown=nobody:nobody /app/priv /app/priv
2022-02-17 23:41:31 -05:00
RUN chmod +x /app/priv/random.sh
2021-09-04 16:14:51 -04:00
ENV HOME=/app
2022-02-13 15:50:59 -05:00
CMD ["bin/cannery", "start"]