Spaces:
Runtime error
Runtime error
Commit
·
bcc9400
1
Parent(s):
f300ad0
Sorting out build issues
Browse files- Dockerfile +2 -2
- reqs.txt → requirements.txt +0 -0
Dockerfile
CHANGED
@@ -5,8 +5,8 @@ ENV HOME=/home/user \
|
|
5 |
PATH=/home/user/.local/bin:$PATH
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
-
COPY ./
|
9 |
-
RUN pip install -r requirements.txt
|
10 |
COPY . .
|
11 |
RUN mkdir -p $HOME/app/data
|
12 |
#RUN chown -R user:user $HOME/app/data
|
|
|
5 |
PATH=/home/user/.local/bin:$PATH
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
+
COPY ./requirements.txt ~/app/requirements.txt
|
9 |
+
RUN pip install -r requirements.txt
|
10 |
COPY . .
|
11 |
RUN mkdir -p $HOME/app/data
|
12 |
#RUN chown -R user:user $HOME/app/data
|
reqs.txt → requirements.txt
RENAMED
File without changes
|