Skip to content
Snippets Groups Projects
Commit e48f899b authored by Jonas Leder's avatar Jonas Leder
Browse files

added apt clean after system update to save space

parent 6a3c1bc3
No related branches found
No related tags found
No related merge requests found
......@@ -12,10 +12,11 @@ COPY export.py /app/export.py
COPY main.py /app/main.py
COPY VERSION /app/VERISON
#Make a complete system update
#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 pipreqs. This tool is used to make the requirements.txt file automatic. Afterwards install them.
RUN pip install pipreqs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment