query / Dockerfile
lkjjj26's picture
upload files
d8b5f68
raw
history blame
198 Bytes
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "app.py"]