Files
core/Dockerfile

12 lines
220 B
Docker
Raw Normal View History

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