Newer
Older
WORKDIR /app
ADD ./static /app/static
ADD ./templates /app/templates
#Make a complete system update. apt-utils is needed for configuring packages, so we need to install it
#Make import and export scripts executable
RUN chmod +x /app/import.sh
RUN chmod +x /app/export.sh
#Make a builddate file, used if you want to see the builddate in the webui
RUN date > builddate.txt
#everytime the container starts run main.py