Skip to content

Instantly share code, notes, and snippets.

@jcmcneal
Last active September 28, 2020 17:22
Show Gist options
  • Save jcmcneal/663b06a78d323271ada31d67bdc8e60b to your computer and use it in GitHub Desktop.
Save jcmcneal/663b06a78d323271ada31d67bdc8e60b to your computer and use it in GitHub Desktop.
Custom Auto DevOps Build Stage
build:
stage: build
image: docker:19.03.13
services:
- docker:19.03.13-dind
script:
- |
apk add bash ruby wget
wget https://github.com/buildpacks/pack/releases/download/v0.12.0/pack-v0.12.0-linux.tgz && \
tar xvf pack-v0.12.0-linux.tgz && \
rm pack-v0.12.0-linux.tgz && \
mv pack /usr/local/bin/pack
- /builds/${CI_PROJECT_PATH}/.gitlab-ci/build.sh
tags:
- arm64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment