Nettoyage

This commit is contained in:
2022-08-11 09:00:15 +02:00
parent 2ba42c7f37
commit 2e97a67522
16 changed files with 97 additions and 15 deletions

View File

@ -1,12 +0,0 @@
#!/usr/bin/env bash
set -e
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
echo 'RUN apt update && apt dist-upgrade --yes && apt clean all' >> Dockerfile
echo 'RUN apt update && apt install --yes make' >> Dockerfile
echo 'RUN apt update && apt install --yes python3-setuptools python3-pygments fonts-liberation fonts-liberation2 && apt clean all' >> Dockerfile
echo 'RUN apt update && apt install --yes texlive-full rubber && apt clean all' >> Dockerfile
echo 'RUN apt update && apt install --yes curl && apt clean all' >> Dockerfile
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile

View File

@ -1,13 +0,0 @@
#!/usr/bin/env bash
set -e
if [ -e './datasets/fonts' ]
then
for font_file in $(find . -wholename "./datasets/fonts/*.ttf")
do
echo 'COPY datasets/fonts/$font_file /root/.fonts/$font_file' >> Dockerfile
done
fi
exit 0