mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-16 21:33:15 -04:00
19 lines
347 B
Docker
19 lines
347 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM lsiobase/alpine:3.17 as buildstage
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
git && \
|
|
git clone https://github.com/ohmyzsh/ohmyzsh.git /root-layer/.oh-my-zsh
|
|
|
|
COPY root/ /root-layer/
|
|
|
|
# runtime stage
|
|
FROM scratch
|
|
|
|
LABEL maintainer="MiguelNdeCarvalho"
|
|
|
|
# Add files from buildstage
|
|
COPY --from=buildstage /root-layer/ /
|