chansung commited on
Commit
f554405
Β·
1 Parent(s): 606e863

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
+ WORKDIR .
4
+
5
+ RUN pip install pynecone-io
6
+
7
+ RUN mkdir my_app_name
8
+
9
+ RUN cd my_app_name
10
+
11
+ RUN pc init
12
+
13
+ CMD ["pc", "run", "--env", "prod"]