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