Created
December 18, 2018 13:45
-
-
Save LondonAppDev/58bcfd9b6267a60beda660aa91df6ddd to your computer and use it in GitHub Desktop.
C2 Dockerfile
This file contains 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
... | |
# Install dependencies | |
COPY ./requirements.txt /requirements.txt | |
RUN apk add --update --no-cache postgresql-client | |
RUN apk add --update --no-cache --virtual .tmp-build-deps \ | |
gcc libc-dev linux-headers postgresql-dev | |
RUN pip install -r /requirements.txt | |
RUN apk del .tmp-build-deps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment