GenAI_project / Dockerfile
jaothan's picture
Upload 24 files
fa64206 verified
raw
history blame
157 Bytes
FROM python:3.8-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]