mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 13:52:56 -04:00
12 lines
308 B
Docker
12 lines
308 B
Docker
FROM lsiobase/alpine:3.12 as buildstage
|
|
|
|
ADD https://raw.githubusercontent.com/gilbN/geoip2influx/master/geoip2influx.py /root-layer/geoip2influx/geoip2influx.py
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="GilbN"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ / |