Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
loonsies committed Jan 12, 2025
1 parent a7c97ff commit 2345464
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM python:3.11-slim

WORKDIR /moogly
RUN apt-get update && apt-get install git -y
COPY entry.sh ./entry.sh

CMD ["/bin/bash", "entry.sh"]
COPY requirements.txt .
RUN pip install -r requirements.txt

COPY moogly.py .
COPY dyes_fr.json .

ENTRYPOINT ["python3", "moogly.py"]

0 comments on commit 2345464

Please sign in to comment.