diff --git a/.circleci/config.yml b/.circleci/config.yml index 80b63a3..c9e0a2a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: - yarn-packages-v1- - run: name: Install Frontend Dependencies - command: cd /go/src/github.com/alexbrazier/go-url/frontend && yarn install --frozen-lockfile --network-timeout 600000 + command: cd /go/src/github.com/alexbrazier/go-url/frontend && yarn install --frozen-lockfile - run: name: Install API Dependencies command: cd /go/src/github.com/alexbrazier/go-url/api && dep ensure diff --git a/Dockerfile b/Dockerfile index addc309..c01fd81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,12 +15,12 @@ RUN go build -o /go/bin/server ############################ # Build frontend ############################ -FROM node:10.15.3-alpine AS frontendbuilder +FROM node:10.16.0-alpine AS frontendbuilder COPY frontend /app WORKDIR /app -RUN yarn --frozen-lockfile && \ +RUN yarn --frozen-lockfile --network-timeout 600000 && \ yarn build ############################