diff --git a/Dockerfile b/Dockerfile index 4211a0c..e06ccbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM python:3.11-slim +WORKDIR /moogly RUN apt-get update && apt-get install git -y -RUN git clone https://github.com/senolem/Moogly /moogly +RUN git clone https://github.com/senolem/Moogly ./ -WORKDIR /moogly -RUN pip install -r requirements.txt +RUN pip install --root-user-action=ignore -r requirements.txt -ENTRYPOINT ["python3", "moogly.py"] \ No newline at end of file +CMD ["python3", "moogly.py"] \ No newline at end of file