Drone: Split out docker build
continuous-integration/drone Build was killed Details

master
Garrett Mills 1 year ago
parent 7c2a7b71d5
commit 9c8f3cb904

@ -4,11 +4,18 @@ type: kubernetes
name: default name: default
steps: steps:
- name: Build image - name: node.js build
image: node:18 image: node:18
commands: commands:
- "npm add --global pnpm" - "npm add --global pnpm"
- pnpm i - pnpm i
- pnpm run build - pnpm run build
- "pnpm run docker:build"
- "pnpm run docker:push" - name: docker build
image: docker
commands:
- "docker build -t ${DOCKER_REGISTRY}/garrettmills/www ."
- "docker push ${DOCKER_REGISTRY}/garrettmills/www"
environment:
DOCKER_REGISTRY:
from_secret: DOCKER_REGISTRY

Loading…
Cancel
Save