2018-03-12 09:59:13 +00:00
|
|
|
|
|
|
|
###################################
|
|
|
|
#Build stage
|
2021-01-20 04:21:01 +00:00
|
|
|
FROM golang:1.15-alpine3.13 AS build-env
|
2018-03-12 09:59:13 +00:00
|
|
|
|
2019-08-04 21:58:16 +00:00
|
|
|
ARG GOPROXY
|
|
|
|
ENV GOPROXY ${GOPROXY:-direct}
|
|
|
|
|
2018-03-12 09:59:13 +00:00
|
|
|
ARG GITEA_VERSION
|
2018-10-23 11:47:59 +00:00
|
|
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
2020-09-27 22:52:22 +00:00
|
|
|
ENV TAGS "bindata timetzdata $TAGS"
|
2020-06-06 21:42:32 +00:00
|
|
|
ARG CGO_EXTRA_CFLAGS
|
2018-03-12 09:59:13 +00:00
|
|
|
|
|
|
|
#Build deps
|
2019-12-05 03:41:38 +00:00
|
|
|
RUN apk --no-cache add build-base git nodejs npm
|
2018-03-12 09:59:13 +00:00
|
|
|
|
|
|
|
#Setup repo
|
|
|
|
COPY . ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
#Checkout version if set
|
|
|
|
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
|
2020-03-03 19:51:11 +00:00
|
|
|
&& make clean-all build
|
2018-03-12 09:59:13 +00:00
|
|
|
|
2021-01-20 04:21:01 +00:00
|
|
|
FROM alpine:3.13
|
2018-03-12 09:59:13 +00:00
|
|
|
LABEL maintainer="maintainers@gitea.io"
|
2015-08-25 04:41:01 +00:00
|
|
|
|
2016-11-28 13:13:18 +00:00
|
|
|
EXPOSE 22 3000
|
2015-08-25 04:41:01 +00:00
|
|
|
|
2017-05-08 11:09:20 +00:00
|
|
|
RUN apk --no-cache add \
|
2016-11-28 13:13:18 +00:00
|
|
|
bash \
|
2018-03-12 09:59:13 +00:00
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
gettext \
|
2016-11-28 13:13:18 +00:00
|
|
|
git \
|
|
|
|
linux-pam \
|
|
|
|
openssh \
|
2018-03-12 09:59:13 +00:00
|
|
|
s6 \
|
|
|
|
sqlite \
|
|
|
|
su-exec \
|
2020-05-10 20:41:34 +00:00
|
|
|
gnupg
|
2018-03-12 09:59:13 +00:00
|
|
|
|
2017-06-30 06:10:37 +00:00
|
|
|
RUN addgroup \
|
2016-11-28 16:37:31 +00:00
|
|
|
-S -g 1000 \
|
2016-11-28 13:13:18 +00:00
|
|
|
git && \
|
2016-11-28 16:22:22 +00:00
|
|
|
adduser \
|
|
|
|
-S -H -D \
|
|
|
|
-h /data/git \
|
2016-11-28 13:13:18 +00:00
|
|
|
-s /bin/bash \
|
|
|
|
-u 1000 \
|
2016-11-28 16:22:22 +00:00
|
|
|
-G git \
|
2016-12-15 09:16:55 +00:00
|
|
|
git && \
|
2017-08-13 06:18:05 +00:00
|
|
|
echo "git:$(dd if=/dev/urandom bs=24 count=1 status=none | base64)" | chpasswd
|
2015-08-17 07:10:23 +00:00
|
|
|
|
2017-06-30 06:10:37 +00:00
|
|
|
ENV USER git
|
|
|
|
ENV GITEA_CUSTOM /data/gitea
|
2016-01-25 13:07:37 +00:00
|
|
|
|
2015-10-02 09:56:36 +00:00
|
|
|
VOLUME ["/data"]
|
2016-11-28 13:13:18 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
|
|
CMD ["/bin/s6-svscan", "/etc/s6"]
|
|
|
|
|
2019-05-06 02:49:32 +00:00
|
|
|
COPY docker/root /
|
2018-03-12 09:59:13 +00:00
|
|
|
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
|
2018-07-04 09:27:30 +00:00
|
|
|
RUN ln -s /app/gitea/gitea /usr/local/bin/gitea
|