cnxqchen commited on
Commit
7d3fc5a
·
verified ·
1 Parent(s): 44c59b4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM alpine:3.21
2
+
3
+ RUN apk add --no-cache ca-certificates curl
4
+
5
+ COPY entrypoint.sh /usr/local/bin/entrypoint.sh
6
+ RUN chmod +x /usr/local/bin/entrypoint.sh
7
+
8
+ ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]