Browse Source

Replace cd with WORKDIR

pull/278/head
Clemens Wolff 5 years ago
parent
commit
d4fea8f6c5
1 changed files with 2 additions and 2 deletions
  1. 4
      Dockerfile

4
Dockerfile

@ -15,8 +15,8 @@ RUN pip install -r /requirements.txt \
COPY . /doccano
RUN cd /doccano \
&& tools/ci.sh
WORKDIR /doccano
RUN tools/ci.sh
FROM builder AS cleaner

Loading…
Cancel
Save