Skip to content

Commit

Permalink
build(deps): update node.js to v18
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 9, 2022
1 parent 8de978b commit b54ca97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
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.9.0-alpine AS installer

# Create app directory
WORKDIR /usr/src/installer
Expand All @@ -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.9.0-alpine AS builder

# Create app directory
WORKDIR /usr/src/builder
Expand Down Expand Up @@ -43,7 +43,7 @@ ENTRYPOINT ["yarn", "run", "start:prod"]


### SERVER STAGE ###
FROM node:16.12.0-alpine AS server
FROM node:18.9.0-alpine AS server

LABEL maintainer 'Jonah Snider <[email protected]> (jonah.pw)'

Expand Down

0 comments on commit b54ca97

Please sign in to comment.