diff options
Diffstat (limited to 'docker/build.sh')
-rwxr-xr-x | docker/build.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/build.sh b/docker/build.sh index 0616aa40f4..cc66f778a6 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -1,5 +1,9 @@ #!/bin/sh +# Set temp environment vars +export GOPATH=/tmp/go +export PATH=${PATH}:${GOPATH}/bin + # Install build deps apk -U --no-progress add linux-pam-dev go@community gcc musl-dev @@ -15,3 +19,7 @@ rm -r $GOPATH # Remove build deps apk --no-progress del linux-pam-dev go gcc musl-dev + +# Create git user for Gogs +adduser -H -D -g 'Gogs Git User' git -h /data/git -s /bin/bash && passwd -u git +echo "export GOGS_CUSTOM=${GOGS_CUSTOM}" >> /etc/profile |