gitea-attachements-proxy/Dockerfile
garionion f3290ff6df
All checks were successful
continuous-integration/drone/push Build is passing
add docker and cicd
2021-09-20 11:23:28 +02:00

9 lines
315 B
Docker

FROM alpine:3.14.1 as alpine
RUN apk add -U --no-cache ca-certificates
FROM alpine:3.14.1
EXPOSE 3000
LABEL maintainer="dockerhub@enderware.de"
ENV GODEBUG netdns=go
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
ADD gitea-attachements-proxy /bin/
ENTRYPOINT ["/bin/gitea-attachements-proxy"]