Skip to content

Commit

Permalink
replaces ENTRYPOINT for all node based runtime images
Browse files Browse the repository at this point in the history
  • Loading branch information
reggeenr committed Nov 7, 2024
1 parent c8906a8 commit cff95df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gallery/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ FROM gcr.io/distroless/nodejs20-debian12
COPY --from=build-env /app /app
WORKDIR /app
EXPOSE 8080
ENTRYPOINT ["app.js"]
CMD ["app.js"]
2 changes: 1 addition & 1 deletion gallery/job/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ RUN npm install
FROM gcr.io/distroless/nodejs20-debian12
COPY --from=build-env /app /app
WORKDIR /app
ENTRYPOINT ["job.js"]
CMD ["job.js"]
2 changes: 1 addition & 1 deletion hello/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ FROM gcr.io/distroless/nodejs20-debian12
COPY --from=build-env /app /app
WORKDIR /app
EXPOSE 8080
ENTRYPOINT ["server.js"]
CMD ["server.js"]
2 changes: 1 addition & 1 deletion satellite-connector-to-vpc-vsi/ce-job/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RUN npm install
FROM gcr.io/distroless/nodejs20-debian12
COPY --from=build-env /job /job
WORKDIR /job
ENTRYPOINT ["job.mjs"]
CMD ["job.mjs"]

0 comments on commit cff95df

Please sign in to comment.