Dominik Meyer
4244bd2647
Some checks reported errors
continuous-integration/drone/push Build encountered an error
10 lines
212 B
Docker
10 lines
212 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
ADD ${ORG_CA_FILE} /usr/local/share/ca-certificates
|
|
RUN update-ca-certificates
|
|
|
|
RUN apk --no-cache add curl
|
|
|
|
RUN curl -o /usr/local/bin/gitea ${TEA_URL}
|