Skip to content

Commit

Permalink
Merge pull request adobe#69 from shanejbrown/main
Browse files Browse the repository at this point in the history
Replace ';' with '&&' in Dockerfile
  • Loading branch information
bluesliverx authored Sep 1, 2023
2 parents fa6e9c8 + 3a10464 commit 45eccab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ ENV PIP_DEFAULT_TIMEOUT 60

# Some of these packages are to have native installs so that arm packages will not be built
RUN \
set -ex; \
useradd -m buildrunner; \
apt update; \
set -x && \
useradd -m buildrunner && \
apt update && \
apt -y install \
libffi-dev \
libssl-dev \
Expand All @@ -18,8 +18,8 @@ RUN \
python3-cryptography \
python3-paramiko \
python3-wrapt \
python3-dev; \
apt clean all;
python3-dev && \
apt clean all

# Running pip this way is strange, but it allows it to detect the system packages installed
# HACK - For some reason, 'python3 setup.py install' produces an error with 'jaraco-classes' package
Expand Down

0 comments on commit 45eccab

Please sign in to comment.