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