mirror of
https://github.com/quay/quay.git
synced 2025-04-18 10:44:06 +03:00
9 lines
127 B
Bash
Executable File
9 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
set -exv
|
|
|
|
BASE_IMG="quay"
|
|
|
|
IMG="${BASE_IMG}:latest"
|
|
|
|
BUILD_CMD="docker build" IMG="$IMG" make app-sre-docker-build
|