mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-16 13:23:02 -04:00
1d343b62f1
Signed-off-by: aptalca <541623+aptalca@users.noreply.github.com>
19 lines
368 B
Docker
19 lines
368 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM lscr.io/linuxserver/baseimage-alpine:3.19 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/ /
|