Skip to content

Commit

Permalink
add package-lock.json to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Mar 22, 2024
1 parent ce59147 commit a15677f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV DS_PORT=${DS_PORT:-3000}

WORKDIR /dwn-server

COPY package.json tsconfig.json entrypoint.sh ./
COPY package.json package-lock.json tsconfig.json entrypoint.sh ./
COPY src ./src

# DWN's levelDB has issues running on m1 when using an alpine base image,
Expand All @@ -18,4 +18,4 @@ RUN npm run build:esm
VOLUME /dwn-server/data

ENTRYPOINT [ "/dwn-server/entrypoint.sh" ]
EXPOSE ${DS_PORT}
EXPOSE ${DS_PORT}

0 comments on commit a15677f

Please sign in to comment.