SAHILVAGHASIYA commited on
Commit
bb83ee0
1 Parent(s): f9412ac

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -16
Dockerfile DELETED
@@ -1,16 +0,0 @@
1
- FROM python:3.9
2
-
3
- #set working director to /
4
- WORKDIR /code
5
- COPY ./requirements.txt /code/
6
- RUN pip install --no-cache-dir --upgrade -r /home/requirements.txt
7
- RUN useradd user
8
- USER user
9
-
10
- ENV HOME=/home/user \
11
- PATH=/home/user/.local/bin:$PATH
12
-
13
- WORKDIR $HOME/app
14
- COPY --chown=user . $HOME/app
15
-
16
- CMD [ "uvicorn", "app:app", "--host", "0:0:0:0","--port","7860" ]