queue_flask / Dockerfile
multimodalart's picture
Update Dockerfile
1a71614
raw
history blame contribute delete
219 Bytes
FROM python:3.9-slim-buster
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the source code
COPY app.py .
EXPOSE 5000
CMD [ "python", "app.py" ]