Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy76 committed Nov 4, 2024
1 parent 05c5192 commit 426c301
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ RUN mv /app/client/dist/* ./dist/views
FROM nodebase as final

# Copy package.json and package-lock.json
COPY package*.json ./
COPY ./server/package*.json ./

# Install only production dependencies
RUN npm i --only=production
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-debian
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ RUN mv /app/client/dist/* ./dist/views
FROM debianbase as final

# Copy package.json and package-lock.json
COPY package*.json ./
COPY ./server/package*.json ./

# Copy transpiled js from builder stage into the final image
COPY --from=tmp_builder /app/dist ./dist
COPY --from=tmp_builder /app/server/dist ./dist

# Install only production dependencies
# the build was done in alpine, so we need to remove any previous node_modules
Expand Down

0 comments on commit 426c301

Please sign in to comment.