mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 22:03:32 -04:00
18 lines
353 B
Docker
18 lines
353 B
Docker
FROM lsiobase/nginx:3.12 as buildstage
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
git && \
|
|
mkdir -p /root-layer/geoip2influx && \
|
|
git clone https://github.com/gilbN/geoip2influx.git /root-layer/geoip2influx
|
|
|
|
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="GilbN"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ / |