santacoder-openai / Dockerfile
ncoop57
Fix bug of path where things are ran
5f3cdc5
FROM python:3.10-slim-buster
WORKDIR /python-docker
COPY requirements.txt requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["uvicorn", "--host", "0.0.0.0", "--port", "5000", "app:app"]