From 9dc473e2503f8556bb8108c3b15af678238e9bb2 Mon Sep 17 00:00:00 2001 From: Lucas BEE Date: Fri, 20 Dec 2019 13:39:49 +0100 Subject: [PATCH] Update docker images --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 18b5525..3460631 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,26 +3,26 @@ name: default steps: - name: prepare-workdir - image: alpine:3.9 + image: alpine:3.11.0 commands: - mkdir canapeapp - name: frontend - image: node:12.2 + image: node:13.5.0 commands: - npm install yarn - yarn install - yarn build - name: backend - image: golang:1.12.4 + image: golang:1.13.5 commands: - GO111MODULE=off go get -tags 'postgres' -u github.com/golang-migrate/migrate/cmd/migrate - cp $$GOPATH/bin/migrate migrate - go build -v -o canapeapp/app backend/*.go - name: prepare-docker - image: alpine:3.9 + image: alpine:3.11.0 commands: - cp docker/run.sh canapeapp/run.sh - cp migrate canapeapp/migrate -- 2.47.1