Skip to content
This repository was archived by the owner on Feb 15, 2022. It is now read-only.

Update Node.js to v17 #550

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Install dependencies only when needed
# Seems ReScript is broken on alpine https://github.com/rescript-lang/rescript-compiler/issues/3666 ?
FROM node:14-buster-slim AS deps
FROM node:17-buster-slim AS deps

RUN apt-get update && apt-get install -y python g++ make

Expand All @@ -11,7 +11,7 @@ COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile

# Rebuild the source code only when needed
FROM node:14-buster-slim AS builder
FROM node:17-buster-slim AS builder

WORKDIR /app

Expand Down