Skip to content

Commit 82f52c0

Browse files
committed
Fix Dockerfile parse error in apt-get install step
Moved inline comment to its own line to prevent Dockerfile parsing issues. Docker does not support comments at the end of lines in multi-line instructions.
1 parent 1cf53fa commit 82f52c0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ RUN ln -snf /bin/bash /bin/sh
1111
# - git for downloading RMG respoitories
1212
# - wget for downloading conda install script
1313
# - libxrender1 required by RDKit
14+
# - ca-certificates added for HTTPS downloads
1415
RUN apt-get update && \
1516
apt-get install -y \
1617
make \
@@ -19,7 +20,7 @@ RUN apt-get update && \
1920
git \
2021
g++ \
2122
libxrender1 \
22-
ca-certificates && \ # Added for HTTPS downloads
23+
ca-certificates && \
2324
apt-get autoremove -y && \
2425
apt-get clean -y
2526

0 commit comments

Comments
 (0)