Skip to content

Commit

Permalink
Merge pull request #16 from cerberauth/use-lts-images
Browse files Browse the repository at this point in the history
Use lts docker images
  • Loading branch information
emmanuelgautier authored Oct 10, 2024
2 parents 8f54e47 + 72d14ea commit 7b8caef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/angular-spa/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20 as development
FROM node:lts AS development

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20 as builder
FROM node:lts AS builder

WORKDIR /app

Expand All @@ -11,7 +11,7 @@ ENV NEXT_BUILD_OUTPUT 'standalone'

RUN npm run build

FROM node:20-alpine
FROM node:lts-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions examples/react-spa/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20 as development
FROM node:lts AS development

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ ENV PORT=3000

CMD [ "npm", "start" ]

FROM development as builder
FROM development AS builder

RUN npm run build

Expand Down

0 comments on commit 7b8caef

Please sign in to comment.