Skip to content

Commit ce2f8c6

Browse files
authored
fic: copy directory after installing zip (#444)
This should allow the `.ci/build` script to cache the `zip` installation layer between builds hopefully improving the build times slightly when starting fresh 😄
1 parent 9dfab95 commit ce2f8c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.ci/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
FROM node:12
22

3-
WORKDIR /lambda
4-
5-
COPY . /lambda
6-
73
RUN apt-get update \
84
&& apt-get install -y zip \
95
&& rm -rf /var/lib/apt/lists/*
106

7+
WORKDIR /lambda
8+
9+
COPY . /lambda
10+
1111
RUN yarn install \
1212
&& yarn run dist
1313

0 commit comments

Comments
 (0)