tool1 / Dockerfile
Eaz123's picture
Create Dockerfile
0701a87 verified
raw
history blame contribute delete
134 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]