healthcare-openenv / Dockerfile.txt
Pro-Coder's picture
Upload 7 files
b618214 verified
Raw
History Blame Contribute Delete
124 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "inference.py"]