13 lines
273 B
Text
13 lines
273 B
Text
|
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"]
|