Skip to content

Commit

Permalink
Update Docker images (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkosiec authored Oct 14, 2021
1 parent 33cac01 commit 3f90fb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-image/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker-image/prod.Dockerfile
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=""
Expand Down

0 comments on commit 3f90fb3

Please sign in to comment.