chore(chart): Removed unnecessary file copying

This commit is contained in:
Данил 2024-12-16 21:42:46 +03:00
parent a7ad1e77d3
commit e51aa5e00c

View file

@ -2,11 +2,9 @@ FROM python:3.13
WORKDIR / WORKDIR /
COPY ./requirements.txt ./ COPY . .
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY . .
EXPOSE 3030 EXPOSE 3030
CMD ["python", "main.py"] CMD ["python", "main.py"]