Files
studio/Dockerfile
T

69 lines
1.5 KiB
Docker
Raw Normal View History

2022-01-19 22:55:17 +01:00
#Build stage
FROM golang:1.17-alpine3.15 AS build-env
2018-03-12 10:59:13 +01:00
ARG GOPROXY
ENV GOPROXY ${GOPROXY:-direct}
2018-03-12 10:59:13 +01:00
ARG GITEA_VERSION
ARG TAGS="sqlite sqlite_unlock_notify"
2020-09-28 00:52:22 +02:00
ENV TAGS "bindata timetzdata $TAGS"
ARG CGO_EXTRA_CFLAGS
2018-03-12 10:59:13 +01:00
#Build deps
RUN apk --no-cache add build-base git nodejs npm
2018-03-12 10:59:13 +01: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 \
&& make clean-all build
2018-03-12 10:59:13 +01:00
# Begin env-to-ini build
RUN go build contrib/environment-to-ini/environment-to-ini.go
2022-01-19 22:55:17 +01:00
FROM alpine:3.15
2018-03-12 10:59:13 +01:00
LABEL maintainer="maintainers@gitea.io"
2015-08-25 12:41:01 +08:00
2016-11-28 14:13:18 +01:00
EXPOSE 22 3000
2015-08-25 12:41:01 +08:00
2017-05-08 13:09:20 +02:00
RUN apk --no-cache add \
2016-11-28 14:13:18 +01:00
bash \
2018-03-12 10:59:13 +01:00
ca-certificates \
curl \
gettext \
2016-11-28 14:13:18 +01:00
git \
linux-pam \
openssh \
2018-03-12 10:59:13 +01:00
s6 \
sqlite \
su-exec \
2020-05-10 22:41:34 +02:00
gnupg
2018-03-12 10:59:13 +01:00
2017-06-30 14:10:37 +08:00
RUN addgroup \
-S -g 1000 \
2016-11-28 14:13:18 +01:00
git && \
2016-11-28 17:22:22 +01:00
adduser \
-S -H -D \
-h /data/git \
2016-11-28 14:13:18 +01:00
-s /bin/bash \
-u 1000 \
2016-11-28 17:22:22 +01:00
-G git \
2016-12-15 10:16:55 +01:00
git && \
echo "git:*" | chpasswd -e
2015-08-17 03:10:23 -04:00
2017-06-30 14:10:37 +08:00
ENV USER git
ENV GITEA_CUSTOM /data/gitea
2015-10-02 10:56:36 +01:00
VOLUME ["/data"]
2016-11-28 14:13:18 +01:00
ENTRYPOINT ["/usr/bin/entrypoint"]
CMD ["/bin/s6-svscan", "/etc/s6"]
COPY docker/root /
2018-03-12 10:59:13 +01:00
COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea
COPY --from=build-env /go/src/code.gitea.io/gitea/environment-to-ini /usr/local/bin/environment-to-ini
2021-12-01 18:08:27 +00:00
RUN chmod 755 /usr/bin/entrypoint /app/gitea/gitea /usr/local/bin/gitea /usr/local/bin/environment-to-ini
RUN chmod 755 /etc/s6/gitea/* /etc/s6/openssh/* /etc/s6/.s6-svscan/*