Spaces:
Runtime error
Runtime error
Commit
·
8636736
1
Parent(s):
6dc98e8
Compile Worked, fix path data
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -31,10 +31,7 @@ RUN chmod -R 777 $WORKDIR
|
|
31 |
|
32 |
COPY requirements.txt $WORKDIR/requirements.txt
|
33 |
COPY . .
|
34 |
-
RUN ls
|
35 |
-
RUN pwd
|
36 |
-
RUN wget https://github.com/SHI-Labs/OneFormer/blob/main/oneformer/data/bpe_simple_vocab_16e6.txt.gz
|
37 |
-
COPY $WORKDIR/bpe_simple_vocab_16e6.txt.gz $WORKDIR/oneformer/data/bpe_simple_vocab_16e6.txt.gz
|
38 |
|
39 |
RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
|
40 |
|
|
|
31 |
|
32 |
COPY requirements.txt $WORKDIR/requirements.txt
|
33 |
COPY . .
|
34 |
+
RUN cd $WORKDIR/oneformer/data/bpe_simple_vocab_16e6.txt.gz && wget https://github.com/SHI-Labs/OneFormer/blob/main/oneformer/data/bpe_simple_vocab_16e6.txt.gz && ls && cd $WORKDIR
|
|
|
|
|
|
|
35 |
|
36 |
RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
|
37 |
|