update .circleci/config.yml

This commit is contained in:
Dawid Wysokiński 2021-04-24 08:57:35 +02:00
parent 18c8faf4f8
commit fad9212846
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ jobs:
# with credentials stored in the UI
- run: |
docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- run: sudo apt install make nasm autoconf automake libtool dpkg pkgconfig libpng libpng-dev g++
# build the application image
- run: docker build -t $DOCKER_LOGIN/twhelp-website:latest .

View File

@ -2,7 +2,7 @@ FROM node:14.16.1-alpine as build-deps
ENV NODE_ENV=production
RUN npm install --global gatsby-cli
RUN npm install --global gatsby-cli@3.3.0
WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn