File size: 211 Bytes
f554405
 
381dc2e
0359ddb
f554405
 
 
 
e06fd53
 
bfe0f2e
f554405
5e32d83
 
f554405
 
1ddd306
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3.9

RUN apt update && apt install nodejs -y

RUN pip install pynecone-io

RUN mkdir my_app_name

RUN chmod 777 my_app_name

WORKDIR my_app_name

RUN touch pynecone.db

RUN pc init

CMD ["pc", "run"]