BP2024/annotation_app/Dockerfile

14 lines
159 B
Docker
Raw Normal View History

2024-04-09 13:39:11 +00:00
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"]