Files
core/Dockerfile

11 lines
220 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 03:56:27 +03:00
EXPOSE 8080
# ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y build-essential git
ENV GIT_SSH_COMMAND "ssh -v"
RUN pip install -r requirements.txt
COPY . .