mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:21:21 +03:00
bcd4adb3a0
* docker: update build script to use glide + make - docker/build.sh will now use glide to fetch dependencies - glide is built from source to keep compatibility with arm (no pre-prebuilt binary for arm) - docker/build.sh will also now use the provided Makefile It will generate an error when trying to get git build has as we do not ship the 88mo .git directory during the build (should not cause any problem as the variable it sets was not set previously) * docker: fix docker arm build - drop gosu version back to 1.7 as gosu binary for armhf is broken - see tianon/gosu#19 * docker: update gosu to 1.9 Signed-off-by: Jean-Philippe Roemer <jp@roemer.im>
37 lines
915 B
Bash
Executable File
37 lines
915 B
Bash
Executable File
#!/bin/sh
|
||
set -x
|
||
set -e
|
||
|
||
# Set temp environment vars
|
||
export GOPATH=/tmp/go
|
||
export PATH=${PATH}:${GOPATH}/bin
|
||
export GO15VENDOREXPERIMENT=1
|
||
|
||
# Install build deps
|
||
apk --no-cache --no-progress add --virtual build-deps build-base linux-pam-dev go
|
||
|
||
# Install glide
|
||
git clone -b 0.10.2 https://github.com/Masterminds/glide ${GOPATH}/src/github.com/Masterminds/glide
|
||
cd ${GOPATH}/src/github.com/Masterminds/glide
|
||
make build
|
||
go install
|
||
|
||
|
||
|
||
# Build Gogs
|
||
mkdir -p ${GOPATH}/src/github.com/gogits/
|
||
ln -s /app/gogs/ ${GOPATH}/src/github.com/gogits/gogs
|
||
cd ${GOPATH}/src/github.com/gogits/gogs
|
||
glide install
|
||
make build TAGS="sqlite cert pam"
|
||
|
||
# Cleanup GOPATH & vendoring dir
|
||
rm -r $GOPATH /app/gogs/vendor
|
||
|
||
# Remove build deps
|
||
apk --no-progress del build-deps
|
||
|
||
# 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
|