WellBePlusAssistant / Dockerfile
natasha1704's picture
Upload 15 files
3a55010 verified
raw
history blame
165 Bytes
FROM python:3.11
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "interaction_db/data_loader.py"]