lolback / Dockerfile
roshcheeku's picture
Upload 12 files
fab5e05 verified
raw
history blame contribute delete
276 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy dependencies first
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy rest of the code
COPY . .
# Run the app
CMD ["python", "app.py"]