JanetBackEnd/Dockerfile

14 lines
178 B
Docker
Raw Normal View History

2023-03-30 15:17:54 +02:00
FROM python:3.8
2023-04-19 09:53:01 +02:00
WORKDIR /backend
2023-03-30 15:17:54 +02:00
2023-04-19 17:29:11 +02:00
COPY requirements_main.txt .
2023-03-30 15:17:54 +02:00
2023-04-19 17:29:11 +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-19 17:29:11 +02:00
ENTRYPOINT ["python", "main.py"]