Skip to content
Snippets Groups Projects
Commit 872e1cc2 authored by Recolic K's avatar Recolic K
Browse files

dockerfile

parent 2bb20199
No related branches found
No related tags found
No related merge requests found
......@@ -3,3 +3,4 @@
openxt
*.tar.gz
bin/
######## Docker build guide
# tools/build-and-pack.sh linux64-only
# sudo docker build -f Dockerfile -t recolic/openxt .
# Requires dotnet-core 5.0.x. dotnet 3.x can not build .net framework project.
from mcr.microsoft.com/dotnet/sdk:5.0
copy *.tar.gz /tmp
run cd /tmp && tar xvzf openxt*.tar.gz && cp bin/* /usr/bin/
run openxt || echo ""
......@@ -10,7 +10,7 @@ import (
// Some options here. Would be improved in beta release.
const DEDUCT_PKGNAME_FROM_VARNAME = true
const USE_PROJECT_NETVER_INSTEAD_OF_HINTPATH_NETVER = false
const OPENXT_VERSION = "1.3-1"
const OPENXT_VERSION = "1.3-2"
func print_help_and_exit() {
println("Usage: openxt <subcommand> [options...]")
......
......@@ -11,12 +11,15 @@ function build () {
arch="$2"
echo "Building OpenXT $version for $os:$arch ..."
[[ "$os" = "windows" ]] && bin_tail=".exe" || bin_tail=""
[[ "$os" = windows ]] && bin_tail=".exe" || bin_tail=""
rm -rf bin/
GOOS="$os" GOARCH="$arch" go build -o "bin/openxt$bin_tail" . &&
GOOS="$os" GOARCH="$arch" go build -o "bin/csproj-to-5$bin_tail" tools/csproj-to-5/main.go &&
GOOS="$os" GOARCH="$arch" go build -o "bin/nuget-download-package$bin_tail" tools/nuget-download-package/main.go tools/nuget-download-package/unzip.go &&
# Static compilation for linux
[[ "$os" = linux ]] && xtra_flags=(-ldflags '-extldflags "-static"') && export CGO_ENABLED=0 || xtra_flags=()
GOOS="$os" GOARCH="$arch" go build "${xtra_flags[@]}" -o "bin/openxt$bin_tail" . &&
GOOS="$os" GOARCH="$arch" go build "${xtra_flags[@]}" -o "bin/csproj-to-5$bin_tail" tools/csproj-to-5/main.go &&
GOOS="$os" GOARCH="$arch" go build "${xtra_flags[@]}" -o "bin/nuget-download-package$bin_tail" tools/nuget-download-package/main.go tools/nuget-download-package/unzip.go &&
tar cvzf "openxt-$version-$os-$arch.tar.gz" bin
return $?
......@@ -24,6 +27,7 @@ function build () {
# Just add architectures you want. Run `go tool dist list` for available architectures.
build linux amd64
[[ "$1" = "linux64-only" ]] && exit 0
build linux 386
build linux arm
build linux arm64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment