Added dynu create

This commit is contained in:
2026-04-16 12:57:09 +02:00
parent bd04430411
commit 93101d0293
2 changed files with 28 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM alpine:latest
LABEL maintainer="matthias@mitscherlich.nl"
RUN \
apk update && \
apk add --no-cache \
curl
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]