Kodd / Dockerfile
xxyy95's picture
Upload 4 files
c2c8cfc verified
raw
history blame contribute delete
168 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 8000
CMD ["python", "main.py"]