mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-26 07:13:48 +01:00
18 lines
459 B
Docker
18 lines
459 B
Docker
# syntax=docker/dockerfile:1.3
|
|
ARG ALPINE_VERSION=3.14
|
|
|
|
# diun.platform=linux/amd64
|
|
FROM alpine:${ALPINE_VERSION}
|
|
|
|
# diun.watch_repo=true
|
|
# diun.max_tags=10
|
|
# diun.platform=linux/amd64
|
|
COPY --from=crazymax/yasu / /
|
|
|
|
# diun.watch_repo=true
|
|
# diun.include_tags=^\d+\.\d+\.\d+$
|
|
# diun.platform=linux/amd64
|
|
RUN --mount=type=bind,target=.,rw \
|
|
--mount=type=bind,from=crazymax/docker:20.10.6,source=/usr/local/bin/docker,target=/usr/bin/docker \
|
|
yasu --version
|