moodtunespace / Dockerfile
ravi86's picture
Create Dockerfile
6418163 verified
Raw
History Blame Contribute Delete
254 Bytes
# Use Python 3.10 as base image
FROM python:3.10
# Set working directory
WORKDIR /code
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
# Run the app
CMD ["python", "app.py"]