LBW / Dockerfile
dschandra's picture
Update Dockerfile
a313f9c verified
raw
history blame contribute delete
226 Bytes
FROM python:3.10-slim
WORKDIR /app
# Copy app files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port used by Flask
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]