Detector_Emo / Dockerfile.txt
FCBXD's picture
Upload 3 files
b3605b9 verified
raw
history blame contribute delete
181 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
COPY api.py .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["python", "api.py"]