Skip to content

Commit 2a89ce7

Browse files
authored
Update Dockerfile. (#138)
Signed-off-by: Ismo Puustinen <[email protected]>
1 parent 9c684fb commit 2a89ce7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build/Dockerfile.runner

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creates final auth-server container image from an already built binary
2-
FROM ubuntu:19.10
2+
FROM ubuntu:20.10
33
RUN groupadd -r auth-server-grp && useradd -m -g auth-server-grp auth-server-usr
44

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

1515
USER auth-server-usr
1616
WORKDIR /app
17-
ENTRYPOINT ["GRPC_VERBOSITY=debug", "/app/auth_server"]
17+
ENV GRPC_VERBOSITY=debug
18+
ENTRYPOINT ["/app/auth_server"]

0 commit comments

Comments
 (0)