Skip to main content
deleted 1 character in body
Source Link

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 

I'm trying to implement a deb package in a Docker file.

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 problem 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?

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 

I'm trying to install a deb package in a Docker image.

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. 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 
Source Link

Cannot install deb command in Debian Docker image

I'm trying to implement a deb package in a Docker file.

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 problem 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?

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