Skip to content

Commit ca62a87

Browse files
fix: Fixing dependency issues that arise in the docker image. (#601)
The dockerfile didn't previously copy in the package-lock file which means package dependency issues could occasionally arise. This is fixed by simply copying in the package-lock file.
1 parent 152abd6 commit ca62a87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

SignallingWebServer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ FROM node:lts
44
WORKDIR /SignallingWebServer
55
COPY NODE_VERSION ./NODE_VERSION
66
COPY package.json ./package.json
7+
COPY package-lock.json ./package-lock.json
78
COPY /Common ./Common
89
COPY /Signalling ./Signalling
910
COPY /SignallingWebServer ./SignallingWebServer

0 commit comments

Comments
 (0)