Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Use static versions in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
derogab committed Oct 14, 2024
1 parent 0ed505b commit 70eb1c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build environment
FROM node:lts as build
FROM node:20.18 as build

# Create app directory
WORKDIR /usr/src/app
Expand All @@ -21,7 +21,7 @@ RUN npm run build


# production environment
FROM nginx:alpine
FROM nginx:1.27-alpine

# Create app directory
WORKDIR /usr/src/app
Expand Down

0 comments on commit 70eb1c3

Please sign in to comment.