JanetBackEnd/Dockerfile

14 lines
147 B
Docker
Raw Normal View History

2023-03-30 15:17:54 +02:00
FROM python:3.8
WORKDIR .
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 4000
ENTRYPOINT ["python", "main.py"]