deps-fix2

This commit is contained in:
2023-10-03 19:48:16 +03:00
parent e0b41ea219
commit 7b97254805
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,6 @@ WORKDIR /app
EXPOSE 8080
ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y gcc
RUN pip install -r requirements.txt
RUN apt update && apt install -y gcc && pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]