12 lines
273 B
Docker
12 lines
273 B
Docker
FROM alpine:latest
|
|
|
|
ENV GITEA_USER=ci
|
|
ENV TEA_VERSION=0.8.0-r2
|
|
|
|
LABEL maintainer="Vivianne Langdon <puttabutta@gmail.com>"
|
|
|
|
RUN apk add --no-cache tea=${TEA_VERSION} --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community
|
|
|
|
COPY init.sh .
|
|
|
|
ENTRYPOINT ["./init.sh"]
|