diff options
author | Joe Chen <jc@unknwon.io> | 2022-05-29 19:45:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 19:45:25 +0800 |
commit | d7bda9ac0ef91c659194c89a6cfbe0611b65379e (patch) | |
tree | 30cc96564acff66d65078b50812b4eccf4d6b905 /Dockerfile | |
parent | 8356dc777420e8db67369c16ded9be270fb69546 (diff) |
build: remove Makefile and update Docker build steps (#6980)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 18 |
1 files changed, 5 insertions, 13 deletions
@@ -7,20 +7,12 @@ RUN apk --no-cache --no-progress add --virtual \ WORKDIR /gogs.io/gogs COPY . . -RUN make build TAGS="cert pam" + +RUN ./docker/build/install-task.sh +RUN TAGS="cert pam" task build FROM alpine:3.14 -RUN if [ `uname -m` == "aarch64" ] ; then \ - export arch="arm64" ; \ - elif [ `uname -m` == "armv7l" ] ; then \ - export arch="armhf"; \ - else \ - export arch="amd64" ; \ - fi \ - && wget https://github.com/tianon/gosu/releases/download/1.11/gosu-$arch -O /usr/sbin/gosu \ - && chmod +x /usr/sbin/gosu \ - && echo http://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ - && apk --no-cache --no-progress add \ +RUN apk --no-cache --no-progress add \ bash \ ca-certificates \ curl \ @@ -42,7 +34,7 @@ WORKDIR /app/gogs COPY docker ./docker COPY --from=binarybuilder /gogs.io/gogs/gogs . -RUN ./docker/finalize.sh +RUN ./docker/build/finalize.sh # Configure Docker Container VOLUME ["/data", "/backup"] |