Vishalakak's picture
Initial Docker deployment of Flask app
3b39ea1
raw
history blame
138 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]