Skip to content
Snippets Groups Projects
Commit fc27a974 authored by Travis Ralston's avatar Travis Ralston
Browse files

Fix permissions in Docker image

parent e4965467
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,10 @@ RUN ./build.sh
# Final runtime stage.
FROM alpine
ARG UID=999
ARG GID=999
USER ${UID}:${GID}
COPY --from=builder /opt/bin/media_repo /opt/bin/complement_hs /usr/local/bin/
RUN apk add --no-cache ca-certificates postgresql openssl dos2unix
......
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