SMI-TED-demo1 / Dockerfile
Enzo Reis de Oliveira
Fixing requirements
38ecc96
raw
history blame contribute delete
159 Bytes
FROM python:3.9.7
WORKDIR /app
COPY requirements.txt .
RUN pip install -r --no-cache-dir requirements.txt
# preload models
COPY . .
CMD ["python", "app.py"]