Fixed Docker to use stretch image and not fail build

This commit is contained in:
Alex Mikhalev 2018-12-06 15:28:35 -08:00
parent 5267f77e8a
commit c33e38dfbb
2 changed files with 4 additions and 14 deletions

View File

@ -1,9 +1,4 @@
FROM node:alpine as builder
RUN apk add yarn \
python \
make \
g++
FROM node:10 as builder
WORKDIR /app/
@ -11,7 +6,7 @@ COPY package.json yarn.lock /app/
RUN yarn install --frozen-lockfile
COPY tslint.json /app
COPY app/ /app/app
COPY client/ /app/client
COPY common/ /app/common
COPY server/ /app/server
@ -19,7 +14,7 @@ RUN yarn build
RUN yarn install --frozen-lockfile --production
FROM node:alpine
FROM node:10
WORKDIR /app/

View File

@ -1,9 +1,4 @@
FROM node:alpine
RUN apk add yarn \
python \
make \
g++
FROM node:10
WORKDIR /app/