Skip to content

Commit

Permalink
fix missing git; apply apt updates also
Browse files Browse the repository at this point in the history
  • Loading branch information
ac6y committed Dec 19, 2024
1 parent 0125dc1 commit e61520a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ FROM python:3.12-slim
RUN mkdir /app
ADD status_pusher.py /app/
ADD requirements.txt /app/requirements.txt
RUN ln -s /app/status_pusher.py /usr/bin/status_pusher

RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install git

RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /app/requirements.txt && rm /app/requirements.txt

0 comments on commit e61520a

Please sign in to comment.