-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ece5549
commit 4a5ff08
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
### INSTALLER STAGE ### | ||
FROM node:16.12.0-alpine AS installer | ||
FROM node:18.4.0-alpine AS installer | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/installer | ||
|
@@ -11,7 +11,7 @@ COPY package.json yarn.lock ./ | |
RUN yarn install --production=true | ||
|
||
### BUILDER STAGE ### | ||
FROM node:16.12.0-alpine AS builder | ||
FROM node:18.4.0-alpine AS builder | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/builder | ||
|
@@ -43,7 +43,7 @@ ENTRYPOINT ["yarn", "run", "start:prod"] | |
|
||
|
||
### SERVER STAGE ### | ||
FROM node:16.12.0-alpine AS server | ||
FROM node:18.4.0-alpine AS server | ||
|
||
LABEL maintainer 'Jonah Snider <[email protected]> (jonah.pw)' | ||
|
||
|