I'm trying to implementinstall a deb package in a Docker fileimage.
I based my Dockerfile on continuumio/miniconda3 that's a Python/Debian image.
This works fine in Debian 9 but not when I try to build my Docker image, but. The problem that I have is that the deb command is not in Debian, and I cannot find a way to install it in the image. Any ideas how to install the deb command or another way to run that statement?
These are the commands:
RUN apt-get -y install apt-transport-https dirmngr RUN deb https://downloads.mariadb.com/MariaDB/mariadb-columnstore-tools/latest/repo/debian9 stretch main RUN wget -qO - https://downloads.mariadb.com/MariaDB/mariadb-columnstore/MariaDB-ColumnStore.gpg.key | sudo apt-key add - RUN apt-get -y install mariadb-columnstore-tools