healthai / Dockerfile
mervp's picture
Upload 22 files
2d462fb verified
raw
history blame contribute delete
157 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]