Files
core/Dockerfile

11 lines
226 B
Docker
Raw Normal View History

2023-09-28 15:51:28 +03:00
FROM python:slim
2023-10-06 03:22:37 +03:00
WORKDIR /app
2023-10-06 03:31:45 +03:00
2023-10-06 05:33:51 +03:00
EXPOSE 80
2023-10-06 03:56:27 +03:00
# ADD nginx.conf.sigil ./
COPY requirements.txt .
2023-10-06 05:33:51 +03:00
RUN apt-get update && apt-get install -y build-essential git
2023-10-06 03:56:27 +03:00
ENV GIT_SSH_COMMAND "ssh -v"
RUN pip install -r requirements.txt
COPY . .