petter2025's picture
Create .dockerfile
379cf95 verified
raw
history blame
140 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD python app.py