deploy-s2s-api / Dockerfile
3v324v23's picture
Add application file
5dbb569
raw
history blame
260 Bytes
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./s2smodels.py /code/
COPY ./main.py /code/
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]