Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ghcr.io/196180/kuma-webdav:main
|
2 |
+
|
3 |
+
USER root
|
4 |
+
RUN apk add --no-cache wget
|
5 |
+
RUN wget -P /tmp https://dl.min.io/server/minio/release/linux-amd64/archive/minio_20250422221226.0.0_x86_64.apk
|
6 |
+
RUN apk add --allow-untrusted /tmp/minio_20250422221226.0.0_x86_64.apk
|
7 |
+
|