-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update Dockerfile to run as non-root #83
Conversation
Signed-off-by: Guus van Weelden <guus.vanweelden@moia.io>
.dockerignore
Outdated
@@ -1,2 +1,3 @@ | |||
.git | |||
.travis.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we still want this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed it. it was part of the .dockerignore
, but fine for me ;)
There is no reason to add all that group and env into the file. You are only copying a binary into the folder. Have you looked or ran my dockerfile? |
ARG USER=deck | ||
ARG GROUP=deck | ||
ARG UID=9999 | ||
ARG GID=9999 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This allows you to set those variables from outside during the build time of the container @digikin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we really had to template these in the first place. This is a self-contained and small Dockerfile.
No strong feelings here so not changes necessary.
RUN apk --no-cache add ca-certificates | ||
WORKDIR /root/ | ||
RUN apk update \ | ||
&& apk upgrade \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is an upgrade necessary here?
@guusvw Friendly ping. |
#84 implements this. |
solves #82
Signed-off-by: Guus van Weelden guus.vanweelden@moia.io