Spaces:
Sleeping
Sleeping
File size: 334 Bytes
d486570 469f73a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.9.18-alpine3.19
WORKDIR /code
RUN apk add make automake gcc g++ subversion python3-dev
RUN pip install --no-cache-dir --upgrade python-dateutil
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
COPY . /code/
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |