diff options
author | Jean-Philippe Roemer <jp@roemer.im> | 2016-02-25 17:41:41 +0000 |
---|---|---|
committer | Jean-Philippe Roemer <jp@roemer.im> | 2016-02-25 20:43:40 +0000 |
commit | 7845075bd24997e625b205d5159e847b40c029dc (patch) | |
tree | 3305c51986015c4e6065c88b6b4aee04486f7ab2 /docker | |
parent | 129638117f1eed78475a041bd65097e56939caca (diff) | |
download | gitea-7845075bd24997e625b205d5159e847b40c029dc.tar.gz gitea-7845075bd24997e625b205d5159e847b40c029dc.zip |
Dockerfile & Dockerfile.pi updates
- Upgrade of gosu to v1.7
- Change in docker/build.sh to use `--no-cache` to prevent APKINDEX creation when installing dev dependencies
- Manual upgrade of Alpine on Raspberry Pi when building to make sure the environment is the same as the standard Dockerfile
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/build.sh b/docker/build.sh index e109affc53..0bf5c0131d 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -7,7 +7,7 @@ export GOPATH=/tmp/go export PATH=${PATH}:${GOPATH}/bin # Install build deps -apk -U --no-progress add --virtual build-deps linux-pam-dev go gcc musl-dev +apk --no-cache --no-progress add --virtual build-deps linux-pam-dev go gcc musl-dev # Init go environment to build Gogs mkdir -p ${GOPATH}/src/github.com/gogits/ |