fix: Add git to docker image
All checks were successful
Build Docker / Build Image (push) Successful in 48s

This commit is contained in:
Nathan Woodburn 2025-01-28 17:33:14 +11:00
parent 2ae618c68a
commit 92f05992ab
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -10,6 +10,7 @@ COPY . /app
# Add mount point for data volume # Add mount point for data volume
# VOLUME /data # VOLUME /data
RUN apk add git
ENTRYPOINT ["python3"] ENTRYPOINT ["python3"]
CMD ["server.py"] CMD ["server.py"]