New-Bing commited on
Commit
ac49cbb
1 Parent(s): 55c6338

Upload Dockerfile (1)

Browse files
Files changed (1) hide show
  1. Dockerfile (1) +19 -0
Dockerfile (1) ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ubuntu:latest
2
+
3
+ USER root
4
+
5
+ ENV DEBIAN_FRONTEND noninteractive
6
+
7
+ COPY . /app
8
+
9
+ RUN chmod -R 777 /app
10
+
11
+ WORKDIR /app
12
+
13
+ RUN apt-get update && apt-get install openjdk-21-jdk wget unzip -y
14
+
15
+ RUN mkdir -p /.config/ngrok
16
+ RUN chown -R root:root /.config/ngrok
17
+ RUN chmod -R 777 /.config/ngrok
18
+
19
+ CMD ["sh", "start.sh"]