Skip to content
Snippets Groups Projects
Commit 06274f0c authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: server Dockerfile - corrected copying of package-lock.json

parent 84d5c86b
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ FROM node:16-alpine
WORKDIR /usr/src
COPY ["package.json", "package-lock.json*", "./"]
COPY ["package.json", "package-lock.json", "./"]
RUN npm install
ENV PATH=/usr/src/node_modules/.bin:$PATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment