WebChat / Dockerfile
yashpinjarkar10's picture
Upload 9 files
7cf3b7f verified
raw
history blame contribute delete
162 Bytes
FROM python:3.12.4-bullseye
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]