core/Dockerfile

11 lines
220 B
Docker
Raw Normal View History

2023-09-28 12:51:28 +00:00
FROM python:slim
WORKDIR /app
2022-12-02 13:52:16 +00:00
2022-11-10 22:44:04 +00:00
EXPOSE 8080
2023-10-05 22:02:51 +00:00
# ADD nginx.conf.sigil ./
2023-09-28 12:51:28 +00:00
COPY requirements.txt .
2023-10-05 20:01:25 +00:00
RUN apt update && apt install -y build-essential git
2023-10-05 22:49:34 +00:00
ENV GIT_SSH_COMMAND="ssh -v"
2023-10-05 20:50:14 +00:00
RUN pip install -r requirements.txt
2022-11-10 22:44:04 +00:00
COPY . .