Skip to content

Commit

Permalink
Update Dockerfile. (#138)
Browse files Browse the repository at this point in the history
Signed-off-by: Ismo Puustinen <[email protected]>
  • Loading branch information
ipuustin authored Mar 24, 2021
1 parent 9c684fb commit 2a89ce7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/Dockerfile.runner
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Creates final auth-server container image from an already built binary
FROM ubuntu:19.10
FROM ubuntu:20.10
RUN groupadd -r auth-server-grp && useradd -m -g auth-server-grp auth-server-usr

# Install dependencies
Expand All @@ -14,4 +14,5 @@ RUN chgrp auth-server-grp /app/* && chown auth-server-usr /app/* && chmod u+x /a

USER auth-server-usr
WORKDIR /app
ENTRYPOINT ["GRPC_VERBOSITY=debug", "/app/auth_server"]
ENV GRPC_VERBOSITY=debug
ENTRYPOINT ["/app/auth_server"]

0 comments on commit 2a89ce7

Please sign in to comment.