Skip to content

Commit

Permalink
Node16 (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
ags1773 authored May 20, 2022
1 parent 44d47c1 commit 05607e8
Show file tree
Hide file tree
Showing 3 changed files with 35,229 additions and 1,106 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/quintype/public-base:node-12.18.2-alpine AS build
FROM quay.io/quintype/public-base:node-16.14.2-alpine3.15 AS build

RUN apk update && \
apk add git
Expand All @@ -7,6 +7,10 @@ RUN mkdir /app
WORKDIR /app

COPY package.json package-lock.json /app/
RUN apk --no-cache --virtual build-dependencies add \
python3 \
make \
g++
RUN npm install --no-optional

# Environment variables for compile phase here
Expand All @@ -19,7 +23,7 @@ RUN git log -n1 --pretty="Commit Date: %aD%nBuild Date: `date --rfc-2822`%n%h %a
npm config set unsafe-perm true && \
./node_modules/.bin/quintype-build

FROM quay.io/quintype/public-base:node-12.18.2-alpine
FROM quay.io/quintype/public-base:node-16.14.2-alpine3.15
MAINTAINER Quintype Developers <[email protected]>

RUN apk update && \
Expand Down
Loading

0 comments on commit 05607e8

Please sign in to comment.