2021-12-05 00:17:54 +00:00
|
|
|
FROM python:3.10-slim
|
|
|
|
WORKDIR /ref-test
|
2021-11-23 13:00:03 +00:00
|
|
|
COPY . .
|
2021-12-05 00:17:54 +00:00
|
|
|
RUN pip install --upgrade pip && pip install -r requirements.txt
|
2022-06-22 11:20:30 +01:00
|
|
|
RUN chmod +x install.py && ./install.py
|
2021-12-05 03:49:31 +00:00
|
|
|
CMD [ "gunicorn", "-b", "0.0.0.0:5000", "-w", "5", "wsgi:app" ]
|