Skip to content

Commit

Permalink
Fix Dockerfile syntactic error
Browse files Browse the repository at this point in the history
Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
  • Loading branch information
JoeLametta committed Aug 10, 2020
1 parent 28221ad commit b3aae5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUN ldconfig
# add user (+ group workaround for ArchLinux)
RUN useradd -m worker -G cdrom \
&& if [ -n "${optical_gid}" ]; then groupadd -f -g "${optical_gid}" optical \
&& usermod -a -G optical worker; fi
&& usermod -a -G optical worker; fi \
&& mkdir -p /output /home/worker/.config/whipper \
&& chown worker: /output /home/worker/.config/whipper
VOLUME ["/home/worker/.config/whipper", "/output"]
Expand Down

0 comments on commit b3aae5f

Please sign in to comment.