Skip to content

Commit

Permalink
chore: update node version to 18 SOFIE-2367
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed May 31, 2023
1 parent e7a399c commit 2846fed
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.19
18.16
4 changes: 2 additions & 2 deletions packages/live-status-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental
# BUILD IMAGE
FROM node:16.17
FROM node:18
WORKDIR /opt

COPY package.json lerna.json yarn.lock tsconfig.json ./
Expand All @@ -15,7 +15,7 @@ RUN yarn build
RUN yarn install --check-files --frozen-lockfile --production --force --ignore-scripts # purge dev-dependencies

# DEPLOY IMAGE
FROM node:16.17-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY --from=0 /opt/package.json /opt/package.json
Expand Down
2 changes: 1 addition & 1 deletion packages/live-status-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.17-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY package.json /opt/
Expand Down
4 changes: 2 additions & 2 deletions packages/mos-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental
# BUILD IMAGE
FROM node:16
FROM node:18
WORKDIR /opt

COPY . .
Expand All @@ -13,7 +13,7 @@ RUN yarn plugin import workspace-tools
RUN yarn workspaces focus --all --production # purge dev-dependencies

# DEPLOY IMAGE
FROM node:16-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY --from=0 /opt/package.json /opt/package.json
Expand Down
2 changes: 1 addition & 1 deletion packages/mos-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY package.json /opt/
Expand Down
4 changes: 2 additions & 2 deletions packages/playout-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental
# BUILD IMAGE
FROM node:16
FROM node:18
WORKDIR /opt

COPY . .
Expand All @@ -13,7 +13,7 @@ RUN yarn plugin import workspace-tools
RUN yarn workspaces focus --all --production # purge dev-dependencies

# DEPLOY IMAGE
FROM node:16-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY --from=0 /opt/package.json /opt/package.json
Expand Down
2 changes: 1 addition & 1 deletion packages/playout-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:18-alpine
RUN apk add --no-cache tzdata

COPY package.json /opt/
Expand Down

0 comments on commit 2846fed

Please sign in to comment.