core/Dockerfile

11 lines
220 B
Docker
Raw Normal View History

2023-09-28 12:51:28 +00:00
FROM python:slim
2023-10-06 00:22:37 +00:00
WORKDIR /app
2023-10-06 00:31:45 +00:00
2023-10-06 00:56:27 +00: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 . .