Skip to content

Commit

Permalink
fix(dockerfile): add update for apt
Browse files Browse the repository at this point in the history
  • Loading branch information
BobAnkh committed Aug 10, 2020
1 parent 3c9105c commit 08926c6
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
@@ -1,6 +1,8 @@
FROM python:3.7.8-slim

RUN apt-get install -y --no-install-recommends git=2.28.0
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends git

COPY main.py entrypoint.sh requirements.txt /
RUN chmod +x /entrypoint.sh
Expand Down

0 comments on commit 08926c6

Please sign in to comment.