test for docker

This commit is contained in:
MReenen 2022-05-15 12:40:35 +02:00
parent 54ec3b47a8
commit 0b310e2220
2 changed files with 9 additions and 2 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3
WORKDIR /app
copy . .
CMD [ "python", "./render.py" ]

View File

@ -10,8 +10,8 @@ from renderSCSS import renderSCSS
with open('template.html', 'r') as file:
template = Template(file.read())
srcDir = '../notes'
destDir = '../public'
srcDir = '../source'
destDir = '../target'
firstItem = True