mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 20:48:01 +00:00
ad46e94ebd
Makefile: Add target 'install-revive' to build revive with the installation path specified by variable REVIVE_INSTALL_DIR. Add utils directory with scripts for building revive in a container. Add utils/build-revive.sh taking option argument '-o <install-dir>' to build revive with the specified install directory. Add utils/revive-builder-debian.dockerfile to make a docker container for building revive in a Debian environment.
8 lines
183 B
Bash
Executable File
8 lines
183 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
CONTAINER=revive-builder-debian-x86
|
|
VERSION=latest
|
|
DOCKERFILE=revive-builder-debian.dockerfile
|
|
|
|
docker build --rm -t ${CONTAINER}:${VERSION} -f ${DOCKERFILE} $@
|