ska-referee-test/ref-test/Dockerfile

5 lines
178 B
Docker
Raw Normal View History

2021-12-05 00:17:54 +00:00
FROM python:3.10-slim
WORKDIR /ref-test
COPY . .
2021-12-05 00:17:54 +00:00
RUN pip install --upgrade pip && pip install -r requirements.txt
CMD [ "gunicorn", "-b", "0.0.0.0:5000", "-w", "8", "main:app" ]