Skip to content
Snippets Groups Projects
Verified Commit 50f4ab3c authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

run docker image as unprivileged user

parent da671992
No related branches found
No related tags found
No related merge requests found
Pipeline #2714 passed
......@@ -27,7 +27,11 @@ RUN npm run build
FROM alpine:3.15
WORKDIR /
COPY --from=go_builder /go/src/app/app /app
RUN apk --no-cache add imagemagick
RUN addgroup -g 1000 -S app && \
adduser -u 1000 -G app -S app
COPY --from=go_builder /go/src/app/app /
COPY templates /templates
COPY --from=asset_builder /app/assets /assets
COPY --from=asset_builder /app/assets /
USER app
ENTRYPOINT ["/app"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment