Skip to content

Commit

Permalink
Add curl for troubleshooting
Browse files Browse the repository at this point in the history
Update Dockerfile to add/install curl for troubleshooting

Signed-off-by: Scott Lowe <[email protected]>
  • Loading branch information
scottslowe committed Nov 6, 2017
1 parent 37ed44c commit 92acb2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ LABEL maintainer="Scott S. Lowe <[email protected]>"
ARG GIT_COMMIT=unspecified
LABEL git_commit=$GIT_COMMIT

RUN pip install flask
RUN pip install flask && \
apk add --no-cache curl && \
rm -rf /var/cache/apk/*

COPY app /app/

Expand Down

0 comments on commit 92acb2e

Please sign in to comment.