Data-analytics / Dockerfile
mike23415's picture
Create Dockerfile
3eb14e0 verified
raw
history blame
137 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]