-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
98 lines (82 loc) · 2.82 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# syntax = docker/dockerfile:1
ARG MIX_ENV="prod"
FROM hexpm/elixir:1.14.2-erlang-25.2-debian-bullseye-20221004-slim as build
# install build dependencies
RUN --mount=type=cache,target=/var/lib/apt,sharing=locked \
--mount=type=cache,target=/var/cache/apt,sharing=locked \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y build-essential git curl npm cargo
# prepare build dir
WORKDIR /app
# install hex + rebar
RUN --mount=type=cache,target=~/.cache/rebar3 \
mix do \
local.hex --force,\
local.rebar --force
# set build ENV
ARG MIX_ENV
ENV MIX_ENV="${MIX_ENV}"
# install mix dependencies
COPY mix.exs mix.lock ./
RUN --mount=type=cache,target=~/.hex/packages/hexpm \
mix deps.get --only $MIX_ENV
RUN mkdir config
# copy compile-time config files before we compile dependencies
# to ensure any relevant config change will trigger the dependencies
# to be re-compiled.
COPY config/config.exs config/$MIX_ENV.exs config/
RUN mix deps.compile
COPY priv priv
COPY assets assets
COPY lib lib
RUN --mount=type=cache,target=/root/.npm npm --prefix assets ci
# compile and build the release
RUN mix compile
RUN mix assets.deploy
# changes to config/runtime.exs don't require recompiling the code
COPY config/runtime.exs config/
COPY rel rel
COPY cfg_files cfg_files
RUN mix release
# start a new build stage so that the final image will only contain
# the compiled release and other runtime necessities
FROM hexpm/elixir:1.14.2-erlang-25.2-debian-bullseye-20221004-slim as app
RUN --mount=type=cache,target=/var/lib/apt,sharing=locked \
--mount=type=cache,target=/var/cache/apt,sharing=locked \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y openssl libncurses6 ca-certificates
RUN update-ca-certificates
ARG MIX_ENV
ENV USER="elixir"
WORKDIR "/home/${USER}/app"
# Creates an unprivileged user to be used exclusively to run the Phoenix app
RUN \
addgroup \
--gid 1000 \
"${USER}" \
&& adduser \
--shell /bin/sh \
--uid 1000 \
--ingroup "${USER}" \
--home "/home/${USER}" \
"${USER}" \
&& su "${USER}"
# Everything from this line onwards will run in the context of the unprivileged user.
USER "${USER}"
COPY scripts/entrypoint.sh ./
COPY cfg_files ./cfg_files
COPY --from=build --chown="${USER}":"${USER}" /app/_build/"${MIX_ENV}"/rel/shroud ./
ENTRYPOINT ["./entrypoint.sh"]
# Expose web (8080) and SMTP-with-STARTTLS (1587)
ENV PORT=8080
EXPOSE 8080
EXPOSE 1587
# Usage:
# * build: sudo docker image build -t elixir/shroud .
# * shell: sudo docker container run --rm -it --entrypoint "" -p 127.0.0.1:4000:4000 elixir/shroud sh
# * run: sudo docker container run --rm -it -p 127.0.0.1:4000:4000 --name shroud elixir/shroud
# * exec: sudo docker container exec -it shroud sh
# * logs: sudo docker container logs --follow --tail 100 shroud
CMD ["start"]