1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 10:18:38 +00:00

Several bugfixes in Docker build

- Removed unnecessary variables
- Fixed symbolic links creation
- Fixed enter point
- Less intermediate containers
This commit is contained in:
Óscar García Amor
2015-10-02 21:18:13 +02:00
parent 655b69cb1f
commit 3e7d8db7a2
3 changed files with 16 additions and 18 deletions

View File

@@ -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