deploy-s2s-api / Dockerfile
3v324v23's picture
Add application file
7e0418a
raw
history blame
558 Bytes
FROM python:3.11
WORKDIR /code
# Copy the requirements file and install dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./s2smodels.py /code/
COPY ./macros.py /code/
COPY ./utils/ /code/utils/
COPY ./modules/ /code/modules/
COPY ./models/ /code/models/
COPY ./data/ /code/data/
COPY ./prompts/ /code/prompts/
COPY ./customs/ /code/customs/
COPY ./main.py /code/
# Specify the command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]