adowu commited on
Commit
2c7cb25
·
verified ·
1 Parent(s): 2600946

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ RUN useradd -m -u 1000 user
4
+
5
+ WORKDIR /app
6
+
7
+ RUN git clone https://github.com/opensumi/ide-startup
8
+
9
+ RUN cd ide-startup
10
+
11
+ RUN yarn
12
+
13
+ CMD ["yarn", "start", "--host", "0.0.0.0", "--port", "8080"]