AnotherLanguageApp / Dockerfile
samu's picture
env
8ea91af
raw
history blame contribute delete
214 Bytes
FROM python:3.9
COPY ./ ./
# Install dependencies
RUN pip install --no-cache --upgrade -r /requirements.txt
# Start the application
CMD ["uvicorn", "backend.api.app:app", "--host", "0.0.0.0", "--port", "7860"]