Sketch-to-Image / Dockerfile
logan-codes's picture
edited dockerfile
7affb93
Raw
History Blame Contribute Delete
264 Bytes
FROM python:3.11.9
WORKDIR /app
# Install Python dependencies
# Copy root requirements
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy application code
COPY . .
# Run the startup command
CMD ["python", "app.py"]
EXPOSE 7860