vid_verse / Dockerfile
badalsahani's picture
Duplicate from badalsahani/vid_verse
6b4cdc0
raw
history blame contribute delete
317 Bytes
FROM python:alpine
RUN mkdir -p /code
RUN chmod 777 /code
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]