ZSCGR commited on
Commit
3c9b607
·
verified ·
1 Parent(s): c50abc0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -5,3 +5,7 @@ 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
 
 
 
 
 
 
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
 
8
+ COPY run.sh /run.sh
9
+ RUN chmod +x /run.sh
10
+
11
+ CMD ["sh", "/run.sh"]