Skip to content

Commit

Permalink
chore(client/server): bump node version to v19
Browse files Browse the repository at this point in the history
  • Loading branch information
fcote committed Feb 24, 2023
1 parent e86454a commit 8fb08a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/client.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: use node.js
uses: actions/setup-node@v3
with:
node-version: '19.x'

- name: publish
uses: docker/build-push-action@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###
### Build container
###
FROM node:15.14-alpine3.10 as builder
FROM node:19-alpine3.17 as builder
WORKDIR /app

# Install deps and build.
Expand All @@ -11,7 +11,7 @@ RUN npm i && npm run build
###
### Production image container
###
FROM node:15.14-alpine3.10 as runtime-container
FROM node:19-alpine3.17 as runtime-container
WORKDIR /app

# Copy compiled sources
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###
### Build container
###
FROM node:15.14-alpine3.10 as tsc-builder
FROM node:19-alpine3.17 as tsc-builder
WORKDIR /app

# Install deps and build.
Expand All @@ -11,7 +11,7 @@ RUN npm i && npm run build
###
### Production image container
###
FROM node:15.14-alpine3.10 as runtime-container
FROM node:19-alpine3.17 as runtime-container
WORKDIR /app

# Copy compiled sources
Expand Down

0 comments on commit 8fb08a3

Please sign in to comment.