|
|
|
|
|
by hknmtt
958 days ago
|
|
I have used something like this in the past: FROM alpine:latest AS base
# Scratch does not have shell so we have to create non-root user in here and later copy it into scratch.
RUN adduser -D -u 123456 appusr FROM scratch
# Copy the binary.
COPY foo.bin /foo.bin
# Copy the user and set is as active.
COPY --from=base /etc/passwd /etc/passwd
USER appusr
# Non-root user cannot bind to "privileged" ports(<=1024).
EXPOSE 1234
ENTRYPOINT ["/foo.bin"] Simple. But i can see ko being good alternative if you for some reason do not want to install docker on your computer but still be able to build docker containers. |
|