Skip to content
Snippets Groups Projects
Verified Commit 0b4a680c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix syntax

(cherry picked from commit 46066eb9)
parent 41de335a
No related branches found
No related tags found
No related merge requests found
Pipeline #19019 passed
......@@ -96,6 +96,15 @@ USER 33:33
# Additional steps
ONBUILD ARG APPS
ONBUILD USER 0:0
ONBUILD RUN set -e; \
if [ -n "$BUILD_DEPS" ]; then \
eatmydata apt-get update; \
eatmydata apt-get install -y $BUILD_DEPS; \
fi; \
if [ -n "$SYSTEM_DEPS" ]; then \
eatmydata apt-get update; \
eatmydata apt-get install -y $SYSTEM_DEPS; \
fi;
ONBUILD RUN set -e; \
if [ -n "$APPS" ]; then \
eatmydata pip install $APPS; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment