Last active
March 7, 2021 14:51
-
-
Save goncalor/b107e16be325563cf81aa6fea475b56b 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 alpine | |
RUN apk --no-cache add #python3 py3-pip git | |
WORKDIR /app | |
RUN adduser -h /app -D user | |
#RUN git clone --depth=1 URI . | |
#COPY ["file", "./"] | |
USER user | |
#ENTRYPOINT ["./file"] | |
#EXPOSE ### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment