-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
55 lines (42 loc) · 1.24 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
################################################################################
# Build Image
FROM alpine:3.14 as build
LABEL maintainer "Christophe De Troyer <[email protected]>"
# Install compile-time dependencies
RUN apk add --update git build-base nodejs npm yarn python3 elixir
RUN mkdir /app
WORKDIR /app
# Install Hex and Rebar
RUN mix do local.hex --force, local.rebar --force
# set build ENV
ENV MIX_ENV=prod
# install mix dependencies
COPY mix.exs mix.lock ./
COPY config config
RUN mix deps.get --only $MIX_ENV
RUN mix deps.compile
# Build web assets.
COPY assets assets
RUN cd assets && npm install && npm run deploy
RUN mix phx.digest
# Compile entire project.
COPY priv priv
COPY lib lib
RUN mix compile
# Build the entire release.
RUN mix release
################################################################################
# Release Image
FROM alpine:3.14 AS app
RUN apk add --update bash openssl postgresql-client libstdc++
ENV MIX_ENV=prod
# Make the working directory for the application.
RUN mkdir /app
WORKDIR /app
# Copy release from build container to this container.
COPY --from=build /app/_build/prod/rel/homedash .
COPY entrypoint.sh .
RUN chown -R nobody: /app
USER nobody
ENV HOME=/app
CMD ["bash", "/app/entrypoint.sh"]