BP2024/annotation_app/Dockerfile
2024-04-09 15:39:11 +02:00

14 lines
159 B
Docker

FROM python:3.9
WORKDIR /app
COPY . /app/
RUN pip install --no-cache-dir -r requirements.txt
RUN python initial.py
EXPOSE 5050
CMD ["python3", "app.py"]