JanetBackEnd/Dockerfile

12 lines
168 B
Docker
Raw Normal View History

2023-03-30 15:17:54 +02:00
FROM python:3.8
2023-04-08 22:30:22 +02:00
WORKDIR /janet_backend
2023-03-30 15:17:54 +02:00
2023-04-19 04:59:48 +02:00
COPY requirements_simple.txt .
2023-03-30 15:17:54 +02:00
2023-04-19 04:57:54 +02:00
RUN pip install -r requirements_simple.txt
2023-03-30 15:17:54 +02:00
2023-04-07 03:23:01 +02:00
COPY . .
2023-04-19 04:57:54 +02:00
ENTRYPOINT ["python", "main_simple.py"]