Skip to content

Commit

Permalink
freeze the 'pnpm-lock.yml' file during the container building
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecodeur committed Jan 5, 2025
1 parent 3bec63c commit c6f7a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ COPY . .

## Install Node.js dependencies (defined in package.json)

RUN ["pnpm", "install"]
RUN ["pnpm", "install", "--frozen-lockfile"]

## Compile and add the directory with compiled binaries to the PATH for direct access

RUN ["cargo", "build"]
RUN ["cargo", "build", "--frozen-lockfile"]
ENV PATH=/tuono/target/debug:$PATH

0 comments on commit c6f7a76

Please sign in to comment.