mirror of
https://github.com/koush/scrypted.git
synced 2026-02-28 16:32:27 +00:00
17 lines
518 B
Bash
Executable File
17 lines
518 B
Bash
Executable File
./template/generate-dockerfile.sh
|
|
|
|
BUILDPACK_DEPS_BASE=bullseye
|
|
NODE_VERSION=18
|
|
FLAVOR=.full
|
|
BASE=$BUILDPACK_DEPS_BASE-$NODE_VERSION
|
|
S6_BASE=$BASE.s6
|
|
|
|
docker build -t koush/scrypted-common:$BASE -f Dockerfile$FLAVOR \
|
|
--build-arg NODE_VERSION=$NODE_VERSION --build-arg BUILDPACK_DEPS_BASE=$BUILDPACK_DEPS_BASE . && \
|
|
\
|
|
docker build -t koush/scrypted-common:$S6_BASE -f Dockerfile.full.s6 \
|
|
--build-arg BASE=$BASE . && \
|
|
\
|
|
docker build -t koush/scrypted:$S6_BASE -f Dockerfile \
|
|
--build-arg BASE=$S6_BASE .
|