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