FROM python:3

LABEL Name=url_shorter
EXPOSE 5000

#Copy files to work directory
WORKDIR /app
ADD ./static /app/static
ADD ./templates /app/templates
COPY import.py /app/import.py
COPY export.py /app/export.py
COPY main.py /app/main.py
COPY VERSION /app/VERISON
COPY requirements.txt /app/requirements.txt

#Make a complete system update. apt-utils is needed for configuring packages, so we need to install it
RUN apt update
RUN apt install apt-utils -y
RUN apt upgrade -y
RUN apt clean

#Install libraries
RUN python3 -m pip install -r requirements.txt

#Compile the Python files (for more speed) and replace the original files
RUN python3 compile.py

#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
ENTRYPOINT python3 main.py