Created
March 4, 2018 07:43
-
-
Save akoenig/f037f43ab6cfbd930b5d4e93bf5dd60b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8-alpine | |
LABEL maintainer="André König <[email protected]>" | |
RUN apk add --update curl iptables sudo && \ | |
addgroup -S app && adduser -S -g app app | |
COPY entrypoint.sh /entrypoint.sh | |
ENTRYPOINT ["/entrypoint.sh", "--"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment