This commit is contained in:
2022-11-28 17:55:30 +03:00
parent d8c293a56e
commit 84926b6110
2 changed files with 7 additions and 11 deletions

View File

@@ -1,13 +1,9 @@
FROM python:3.8
FROM python:3.10
EXPOSE 8080
ADD nginx.conf.sigil ./
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .