summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index cea1d5b6..e441b76d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,8 +11,9 @@ ARG SRC_PATH=./
# Copy the app to the image
COPY ${SRC_PATH} ./app
-# OS dependencies
-RUN apt-get update -y && apt-get install -y ${BUILD_DEPS} && \
+RUN \
+ # OS dependencies
+ apt-get update -y && apt-get install -y ${BUILD_DEPS} && \
\
# Download nodejs
wget https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-${ARCHICTECTURE}.tar.gz && \