Cleanup apt after installing packages
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tyler 2022-12-08 02:31:13 -05:00
parent 68a42f2316
commit 2aa6f75228
2 changed files with 12 additions and 9 deletions

View File

@ -1,7 +1,8 @@
FROM ubuntu:18.04 AS python-ubuntu FROM ubuntu:18.04 AS python-ubuntu
RUN apt-get update RUN apt-get update && \
RUN apt-get install -y build-essential curl python3 python3-pip python3-venv apt-get install -y build-essential curl python3 python3-pip python3-venv && \
rm -rf /var/lib/apt/lists/*
# Inorder to run pip3.6, run it the following way `python3.6 -m pip` # Inorder to run pip3.6, run it the following way `python3.6 -m pip`
# Update Python & Install wheel # Update Python & Install wheel
@ -10,7 +11,9 @@ RUN python3 -m pip install wheel
FROM python-ubuntu FROM python-ubuntu
RUN apt-get update && apt-get install liblapack-dev libpng-dev libfreetype6-dev libqhull-dev git pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran libopenblas-dev libatlas-base-dev -y RUN apt-get update && \
apt-get install liblapack-dev libpng-dev libfreetype6-dev libqhull-dev git pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran libopenblas-dev libatlas-base-dev -y && \
rm -rf /var/lib/apt/lists/*
RUN mkdir /training && pip3 install git+https://github.com/tystuyfzand/precise-lite.git@feature/tf24 RUN mkdir /training && pip3 install git+https://github.com/tystuyfzand/precise-lite.git@feature/tf24

View File

@ -1,7 +1,8 @@
FROM nvidia/cuda:11.0.3-cudnn8-runtime-ubuntu18.04 AS python-ubuntu FROM nvidia/cuda:11.0.3-cudnn8-runtime-ubuntu18.04 AS python-ubuntu
RUN apt-get update RUN apt-get update && \
RUN apt-get install -y build-essential curl python3 python3-pip python3-venv apt-get install -y build-essential curl python3 python3-pip python3-venv && \
rm -rf /var/lib/apt/lists/*
# Inorder to run pip3.6, run it the following way `python3.6 -m pip` # Inorder to run pip3.6, run it the following way `python3.6 -m pip`
# Update Python & Install wheel # Update Python & Install wheel
@ -9,10 +10,9 @@ RUN python3 -m pip install pip --upgrade && python3 -m pip install wheel
FROM python-ubuntu FROM python-ubuntu
RUN apt-get update && apt-get install -y \ RUN apt-get update && \
liblapack-dev libpng-dev libfreetype6-dev libqhull-dev git \ apt-get install liblapack-dev libpng-dev libfreetype6-dev libqhull-dev git pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran libopenblas-dev libatlas-base-dev -y && \
pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran \ rm -rf /var/lib/apt/lists/*
libopenblas-dev libatlas-base-dev
RUN mkdir /training && pip3 install git+https://github.com/tystuyfzand/precise-lite.git@feature/tf24 && pip3 install tensorflow-gpu==2.4.4 RUN mkdir /training && pip3 install git+https://github.com/tystuyfzand/precise-lite.git@feature/tf24 && pip3 install tensorflow-gpu==2.4.4