test for docker
This commit is contained in:
parent
54ec3b47a8
commit
0b310e2220
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM python:3
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
copy . .
|
||||||
|
|
||||||
|
CMD [ "python", "./render.py" ]
|
||||||
@ -10,8 +10,8 @@ from renderSCSS import renderSCSS
|
|||||||
with open('template.html', 'r') as file:
|
with open('template.html', 'r') as file:
|
||||||
template = Template(file.read())
|
template = Template(file.read())
|
||||||
|
|
||||||
srcDir = '../notes'
|
srcDir = '../source'
|
||||||
destDir = '../public'
|
destDir = '../target'
|
||||||
|
|
||||||
firstItem = True
|
firstItem = True
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user