-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Stage 1: Core | ||
# | ||
|
||
FROM node:15-alpine AS coreBuilder | ||
FROM node:16-alpine AS coreBuilder | ||
LABEL Maintainer="Pawel Kosiec <[email protected]>" | ||
|
||
ENV CORE_DIR=./core | ||
|
@@ -29,7 +29,7 @@ RUN npm i --production --no-optional | |
# Stage 2: CLI | ||
# | ||
|
||
FROM node:15-alpine as cliBuilder | ||
FROM node:16-alpine as cliBuilder | ||
|
||
ENV CLI_DIR=./cli | ||
WORKDIR /app | ||
|
@@ -56,7 +56,7 @@ RUN rm -rf /app/src/ && \ | |
# Stage 3: Final Docker image | ||
# | ||
|
||
FROM node:15-alpine | ||
FROM node:16-alpine | ||
LABEL Maintainer="Pawel Kosiec <[email protected]>" | ||
|
||
WORKDIR /app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:15-alpine | ||
FROM node:16-alpine | ||
LABEL Maintainer="Pawel Kosiec <[email protected]>" | ||
|
||
ARG cliVersion="" | ||
|