Skip to content

Commit

Permalink
fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy76 committed Nov 4, 2024
1 parent b30d702 commit 05c5192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-debian
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN ansible-galaxy collection install community.mysql -p /usr/share/ansible/coll
# why from diff image? for faster build, this image has node preinstalled and can start building immediately
# if only the node app changes, the intermediate image can be cached and the final image will be faster to build

FROM node AS tmp_builder
FROM node:16-alpine AS tmp_builder

# Update npm
RUN npm install -g [email protected]
Expand Down Expand Up @@ -128,7 +128,7 @@ FROM debianbase as final
COPY package*.json ./

# Copy transpiled js from builder stage into the final image
COPY --from=tmp_builder /app/server/dist ./dist
COPY --from=tmp_builder /app/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 05c5192

Please sign in to comment.