texttotextwithdocker / Dockerfile
aaryangupta22's picture
Upload 3 files
199bcf1 verified
raw
history blame contribute delete
382 Bytes
##python image
FROM python:3.9
WORKDIR /code
COPY ./requirment.txt /code/requirment.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirment.txt
RUN useradd user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
CMD ["uvicorn","app:app","--host","0.0.0.0","--port","7860"]