link-elongater/Dockerfile

9 lines
241 B
Docker
Raw Normal View History

2024-06-03 18:17:39 +01:00
FROM python:3.11-slim
#RUN apt-get update
#RUN apt-get install -y gcc
WORKDIR /app
COPY requirements.txt /app
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]