Skip to content

Commit f3a5930

Browse files
committed
[server] Improve (repeated) Docker build times
1 parent 84e459e commit f3a5930

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/server/leeway.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
# See License.AGPL.txt in the project root for license information.
44

55
FROM node:18.17.1-slim as builder
6-
COPY components-server--app /installer/
76

87
# Install Python, make, gcc and g++ for node-gyp
98
RUN apt-get update && \
109
apt-get install -y python3 make gcc g++ && \
1110
apt-get clean && \
1211
rm -rf /var/lib/apt/lists/*
1312

13+
COPY components-server--app /installer/
14+
1415
WORKDIR /app
1516
RUN /installer/install.sh
1617

0 commit comments

Comments
 (0)