We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0691036 commit 1f9db89Copy full SHA for 1f9db89
.buildkite/Dockerfile
@@ -3,14 +3,14 @@ FROM node:$NODE_VERSION
3
4
# Install required tools
5
RUN apt-get clean -y && \
6
- apt-get -qy update && \
7
- apt-get -y install zip && \
8
- apt-get clean && \
9
- rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+ apt-get -qy update && \
+ apt-get -y install zip && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
10
11
WORKDIR /usr/src/app
12
13
COPY package.json .
14
-RUN npm install --production=false
+RUN npm install
15
16
COPY . .
.buildkite/Dockerfile-make
@@ -24,7 +24,7 @@ USER ${BUILDER_UID}:${BUILDER_GID}
24
25
# install dependencies
26
27
28
29
# copy project files
30
0 commit comments