We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c684fb commit 2a89ce7Copy full SHA for 2a89ce7
build/Dockerfile.runner
@@ -1,5 +1,5 @@
1
# Creates final auth-server container image from an already built binary
2
-FROM ubuntu:19.10
+FROM ubuntu:20.10
3
RUN groupadd -r auth-server-grp && useradd -m -g auth-server-grp auth-server-usr
4
5
# Install dependencies
@@ -14,4 +14,5 @@ RUN chgrp auth-server-grp /app/* && chown auth-server-usr /app/* && chmod u+x /a
14
15
USER auth-server-usr
16
WORKDIR /app
17
-ENTRYPOINT ["GRPC_VERBOSITY=debug", "/app/auth_server"]
+ENV GRPC_VERBOSITY=debug
18
+ENTRYPOINT ["/app/auth_server"]
0 commit comments