forked from eigr/spawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile-initializer
45 lines (29 loc) · 1001 Bytes
/
Dockerfile-initializer
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
FROM elixir:1.15-alpine AS builder
ENV MIX_ENV=prod
WORKDIR /app
RUN apk add --no-cache --update git build-base ca-certificates zstd gcc pkgconfig openssl-dev
COPY spawn_initializer/ .
RUN mix local.rebar --force \
&& mix local.hex --force \
&& mix deps.get \
&& mix release.init
# This will be the basename of node
ENV RELEASE_NAME="spawn_initializer"
# Disable Erlang Dist
ENV RELEASE_DISTRIBUTION=none
RUN mix deps.get \
&& mix release spawn_initializer
# ---- Application Stage ----
FROM alpine:3.20
RUN apk add --no-cache --update zstd ncurses-libs libstdc++ libgcc
WORKDIR /app
RUN chown nobody /app
# Set runner ENV
ENV MIX_ENV=prod
ENV HOME=/app
COPY --from=builder --chown=nobody:root /app/_build/${MIX_ENV}/rel/bakeware/ ./
RUN mkdir -p /app/.cache/bakeware/ && chmod 777 /app/.cache/bakeware/
RUN touch /.erlang.cookie && chmod 777 /.erlang.cookie
RUN touch /app/.erlang.cookie && chmod 777 /app/.erlang.cookie
USER nobody
ENTRYPOINT ["./spawn_initializer"]