APISOAP / Dockerfile
syafiqq02's picture
ya
a9f7bba
raw
history blame contribute delete
219 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY app /code/app
RUN pip install --upgrade pip
RUN pip install -r /code/app/requirements.txt
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]