core/Dockerfile

12 lines
220 B
Docker
Raw Normal View History

2024-12-21 20:31:19 +00:00
FROM python:3.11-slim
2023-09-28 12:51:28 +00:00
WORKDIR /app
2022-12-02 13:52:16 +00:00
2022-11-10 22:44:04 +00:00
EXPOSE 8080
2022-11-28 14:55:30 +00:00
ADD nginx.conf.sigil ./
2023-09-28 12:51:28 +00:00
COPY requirements.txt .
2024-01-24 08:19:42 +00:00
RUN apt update && apt install -y git gcc curl postgresql
2023-05-09 21:41:13 +00:00
RUN pip install -r requirements.txt
2022-11-10 22:44:04 +00:00
COPY . .
2024-01-24 08:36:15 +00:00
CMD python server.py