test-rest / Dockerfile
mithenks's picture
feat: create hello world endpoint
bbc7254
raw
history blame contribute delete
214 Bytes
FROM python:3.11
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]