jellyfin/deployment/debian-package-x64/docker-build.sh

17 lines
266 B
Bash
Raw Normal View History

2019-02-06 00:40:50 +01:00
#!/bin/bash
# Builds the DEB inside the Docker container
set -o errexit
set -o xtrace
# Move to source directory
pushd ${SOURCE_DIR}
# Build DEB
dpkg-buildpackage -us -uc
# Move the artifacts out
mkdir -p ${ARTIFACT_DIR}/deb
mv /jellyfin_* ${ARTIFACT_DIR}/deb/