praeclarumjj3 commited on
Commit
4af0100
1 Parent(s): 0e0db7c

Compile Worked, fix path data

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -28,12 +28,14 @@ WORKDIR $WORKDIR
28
  RUN chown -R user:user $WORKDIR
29
  RUN chmod -R 777 $WORKDIR
30
 
 
 
 
31
  RUN ls
32
  RUN pwd
33
- COPY /app/oneformer/data/bpe_simple_vocab_16e6.txt.gz $WORKDIR/oneformer/data/bpe_simple_vocab_16e6.txt.gz
34
- # COPY requirements.txt $WORKDIR/requirements.txt
35
  # RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
36
- # COPY . .
37
 
38
  # ARG TORCH_CUDA_ARCH_LIST=7.5+PTX
39
 
 
28
  RUN chown -R user:user $WORKDIR
29
  RUN chmod -R 777 $WORKDIR
30
 
31
+
32
+ COPY requirements.txt $WORKDIR/requirements.txt
33
+ COPY . .
34
  RUN ls
35
  RUN pwd
36
+ COPY ./oneformer/data/bpe_simple_vocab_16e6.txt.gz $WORKDIR/oneformer/data/bpe_simple_vocab_16e6.txt.gz
37
+
38
  # RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
 
39
 
40
  # ARG TORCH_CUDA_ARCH_LIST=7.5+PTX
41