added static to dockerfile. Started setting up css grid, with nav on left and large main window

This commit is contained in:
Dan
2020-07-30 00:54:54 -04:00
parent 422b2a111c
commit a728d630a0
3 changed files with 45 additions and 23 deletions

View File

@@ -2,6 +2,7 @@ FROM python:3
ADD main.py /
ADD requirements.txt /
ADD templates /templates
ADD static /static
VOLUME /download/
@@ -10,4 +11,4 @@ RUN pip install manga-py
CMD ["python", "./main.py"]
CMD ["python", "./main.py"]