Files
core/Dockerfile

10 lines
200 B
Docker
Raw Normal View History

2023-05-11 14:05:51 +02:00
FROM python:3.10
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 ./
2022-11-10 23:44:04 +01:00
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
2023-05-09 23:41:13 +02:00
RUN pip install -r requirements.txt
2022-11-10 23:44:04 +01:00
COPY . .