deboramachadoandrade commited on
Commit
696b419
1 Parent(s): 4ce98fe

delete docker file

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -11
Dockerfile DELETED
@@ -1,11 +0,0 @@
1
- FROM python:3.9
2
- RUN useradd -m -u 1000 user
3
- USER user
4
- ENV HOME=/home/user \
5
- PATH=/home/user/.local/bin:$PATH
6
- WORKDIR $HOME/Mid-term_copy
7
- COPY --chown=user . $HOME/Mid-term_copy
8
- COPY ./requirements.txt ~/Mid_term_copy/requirements.txt
9
- RUN pip install -r requirements.txt
10
- COPY . .
11
- CMD ["chainlit", "run", "app.py", "--port", "7860"]