matthoffner commited on
Commit
9783b70
ยท
1 Parent(s): c3949ca

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -4,10 +4,6 @@ ENV PYTHONUNBUFFERED 1
4
 
5
  EXPOSE 8000
6
 
7
- COPY requirements.txt ./
8
- RUN pip install --upgrade pip && \
9
- pip install -r requirements.txt
10
-
11
  RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
12
  RUN apt-get install git-lfs
13
 
@@ -22,6 +18,11 @@ WORKDIR $HOME/app
22
 
23
  RUN git fetch https://huggingface.co/TheBloke/MPT-7B-Storywriter-GGML mpt-7b-storywriter.ggmlv3.q4_0.bin
24
 
 
 
 
 
 
25
  COPY --chown=user . $HOME/app
26
 
27
  RUN ls -al
 
4
 
5
  EXPOSE 8000
6
 
 
 
 
 
7
  RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
8
  RUN apt-get install git-lfs
9
 
 
18
 
19
  RUN git fetch https://huggingface.co/TheBloke/MPT-7B-Storywriter-GGML mpt-7b-storywriter.ggmlv3.q4_0.bin
20
 
21
+
22
+ RUN pip install --upgrade pip && \
23
+ pip install -r requirements.txt
24
+
25
+
26
  COPY --chown=user . $HOME/app
27
 
28
  RUN ls -al