JanetBackEnd/Dockerfile

12 lines
147 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-09 19:25:15 +02:00
COPY requirements.txt .
2023-03-30 15:17:54 +02:00
2023-04-09 19:25:15 +02:00
RUN pip install -r requirements.txt
2023-03-30 15:17:54 +02:00
2023-04-07 03:23:01 +02:00
COPY . .
2023-04-09 19:25:15 +02:00
ENTRYPOINT ["python", "main.py"]