JanetBackEnd/Dockerfile

14 lines
192 B
Docker
Raw Normal View History

2023-04-21 01:16:28 +02:00
FROM python:3.8.10-slim
2023-03-30 15:17:54 +02:00
2023-04-21 01:16:28 +02:00
WORKDIR /backend_janet
2023-03-30 15:17:54 +02:00
2023-04-21 04:08:30 +02:00
COPY requirements_main.txt .
2023-03-30 15:17:54 +02:00
2023-04-21 04:08:30 +02:00
RUN pip install -r requirements_main.txt
2023-03-30 15:17:54 +02:00
2023-04-20 18:09:04 +02:00
RUN rm -fr /root/.cache/*
2023-04-07 03:23:01 +02:00
COPY . .
2023-04-21 04:08:30 +02:00
ENTRYPOINT ["python", "main.py"]