Skip to content

Commit

Permalink
Debugging: add fix for broken build using node v17
Browse files Browse the repository at this point in the history
  • Loading branch information
stebje committed Nov 10, 2021
1 parent 847f5fa commit 01fd9ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -13,15 +13,15 @@ RUN npm ci


# Our Application built from sources
FROM node:alpine as BUILDER
FROM node:16-alpine as BUILDER
WORKDIR /build
COPY . .
COPY --from=DEPENDENCIES /build/node_modules ./node_modules
RUN npm run build


# The execution container for deploying and running application
FROM node:alpine as RUNNER
FROM node:16-alpine as RUNNER

ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
Expand Down

1 comment on commit 01fd9ab

@vercel
Copy link

@vercel vercel bot commented on 01fd9ab Nov 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

The most recent charge for your active payment method has failed. Please update it here: https://vercel.com/teams/actionsfundamentals/settings/billing.

Please sign in to comment.