This commit is contained in:
2023-10-06 05:33:51 +03:00
parent aa5709c695
commit 150449a0cf
3 changed files with 17 additions and 17 deletions

View File

@@ -1,10 +1,10 @@
FROM python:slim
WORKDIR /app
EXPOSE 8080
EXPOSE 80
# ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y build-essential git
RUN apt-get update && apt-get install -y build-essential git
ENV GIT_SSH_COMMAND "ssh -v"
RUN pip install -r requirements.txt
COPY . .