chansung commited on
Commit
bfe0f2e
Β·
1 Parent(s): 393a1e5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -1,12 +1,10 @@
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
 
 
1
  FROM python:3.9
2
 
 
 
3
  RUN pip install pynecone-io
4
 
5
  RUN mkdir my_app_name
6
 
7
+ WORKDIR my_app_name
8
 
9
  RUN pc init
10