fix dockerfile copy

This commit is contained in:
dmunozv04
2023-11-17 11:43:33 +01:00
parent b88d2b61be
commit 93e3fd5720

View File

@@ -9,12 +9,11 @@ COPY requirements.txt .
RUN pip install --upgrade pip wheel && \
pip install -r requirements.txt
COPY requirements.txt .
WORKDIR /app
RUN python -m compileall .
COPY . .
COPY src .
ENTRYPOINT ["python3", "-u", "main.py"]