We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd6a3a commit d746234Copy full SHA for d746234
Dockerfile
@@ -11,14 +11,14 @@ COPY . /app/
11
RUN cd /app && gleam export erlang-shipment
12
13
# Final stage
14
-FROM erlang:${ERLANG_VERSION}
+FROM erlang:${ERLANG_VERSION}-alpine
15
ARG GIT_SHA
16
ARG BUILD_TIME
17
ENV GIT_SHA=${GIT_SHA}
18
ENV BUILD_TIME=${BUILD_TIME}
19
RUN \
20
addgroup --system gleam_packages && \
21
- adduser --system gleam_packages --group gleam_packages
+ adduser --system gleam_packages -g gleam_packages
22
COPY --from=build /app/build/erlang-shipment /app
23
VOLUME /app/data
24
LABEL org.opencontainers.image.source=https://github.com/gleam-lang/packages
0 commit comments