search for: dockerfile

Displaying 20 results from an estimated 135 matches for "dockerfile".

2016 Jan 29
1
Re: Write content to file from Dockerfile and/or any other method
On Fri, 29 Jan 2016 06:31, Keith Keller <kkeller at ...> wrote: > On 2016-01-29, reynierpm at gmail.com <reynierpm at gmail.com> wrote: >> >> I am building a Dockerfile and I am setting up MariaDB repos as follow: > > This question is probably way offtopic for a CentOS mailing list. > >> # Setup MariaDB repos >> RUN touch /etc/yum.repos.d/MariaDB.repo >> >> What's the right way to do this? The one below? >> >> echo...
2016 Jan 29
2
Write content to file from Dockerfile and/or any other method
I am building a Dockerfile and I am setting up MariaDB repos as follow: # Setup MariaDB repos RUN touch /etc/yum.repos.d/MariaDB.repo I should write this inside the MariaDB.repo file: [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/5.5/centos6-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck...
2020 Jun 25
4
Update on docker Python:3 and adding R:4.x
My dockerfile: FROM python:3 WORKDIR /usr/src/app COPY requirements.txt ./ COPY languageserver-master ./ COPY radian-master ./ RUN pip3 install --no-cache-dir -r requirements.txt EXPOSE 8080 RUN apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF' RUN echo &qu...
2020 Jun 24
2
Update on docker Python:3 and adding R:4.x
I continue to receive an error installing R via dockerfile on a buster image python:3. E: The value 'buster-cran40' is invalid for APT::Default-Release as such a release is not available in the sources My starting point is the debian buster based Python:3 image adding a couple of python specific configurations and then using the commands in the R...
2016 Jan 29
0
Write content to file from Dockerfile and/or any other method
On 2016-01-29, reynierpm at gmail.com <reynierpm at gmail.com> wrote: > I am building a Dockerfile and I am setting up MariaDB repos as follow: This question is probably way offtopic for a CentOS mailing list. > # Setup MariaDB repos > RUN touch /etc/yum.repos.d/MariaDB.repo > > What's the right way to do this? The one below? > > echo "[mariadb]" >> "...
2016 Jan 29
3
SOT: Best strategy for automatize a flow that need user interaction
I am working in a Dockerfile but there is a "secure" MariaDB server script I need to run which is interactive and I don't know how to deal with this. Basically this is the flow I have follow on the script at test environment and is the same I want to achieve in the Dockerfile without user interaction by just ans...
2017 Apr 19
4
difficulty in Ubuntu 14.04 apt-getting R 3.3.2
Hi: I have a Dockerfile, which builds an image which installed R 3.3.2 in Ubuntu 14.04, but building using that Dockerfile seems to have stopped working and I am unclear why. I believe the relevant error is: Some packages could not be installed. This may mean that you have requested an impossible situation or if you are...
2020 Jun 29
2
R-devel internal errors during check produce?
...y (and have no clues about docker). Perhaps you can try to debug this on your end? And see what env_list is when the error occurs? Best -k > Exact environment where I am reproducing this issue is a fresh ubuntu, > no R packages pre-installed > docker pull registry.gitlab.com/jangorecki/dockerfiles/r-devel > https://gitlab.com/jangorecki/dockerfiles/-/raw/master/r-devel/Dockerfile > On Sat, Jun 27, 2020 at 12:37 AM Jan Gorecki <j.gorecki at wit.edu.pl> wrote: >> >> Hi R developers, >> >> On R-devel (2020-06-24 r78746) I am getting those two new exceptio...
2020 Jun 25
0
Update on docker Python:3 and adding R:4.x
Am Donnerstag, 25. Juni 2020, 04:52:37 CEST schrieb Dave Lange: > My dockerfile: > ... > RUN apt update \ > && apt-get install -y --no-install-recommends \ > ca-certificates \ > wget \ > && rm -rf /var/lib/apt/lists/* Any reason why you remove the contents of /var/lib/apt/lists? On my system, this directory holds PGP signed information abo...
2020 Jun 24
0
Update on docker Python:3 and adding R:4.x
On 24 June 2020 at 15:15, Dave Lange wrote: | I continue to receive an error installing R via dockerfile on a buster | image python:3. | E: The value 'buster-cran40' is invalid for APT::Default-Release as such a | release is not available in the sources Do you have the Dockerfile in public repo we can look at? | My starting point is the debian buster based Python:3 image adding a couple Thi...
2020 Jun 26
2
R-devel internal errors during check produce?
Hi R developers, On R-devel (2020-06-24 r78746) I am getting those two new exceptions during R check. I found a change which eventually may be related https://github.com/wch/r-source/commit/69de92b9fb1b7f2a7c8d1394b8d56050881a5465 I think this may be a regression. I grep'ed package manuals and R code for unique.default but don't see any. Usage section of the unique method looks fine as
2019 Jul 05
6
Container setup - selftests not running?
...ps://lists.samba.org/archive/samba/2019-July/224115.html and the lack of recent builds of Samba in Ubuntu, I started to build Samba on my own. I installed a new virtual machine with Ubuntu 18.04.2 (LTS) server (+ssh), installed docker and docker-compose, and then tried to build using the following Dockerfile: --- Dockerfile begin --- # https://docs.docker.com/develop/develop-images/multistage-build/ # https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact # https://wiki.samba.org/index.php/Build_Samba_from_Source # obviously you can only switch to distros also using ap...
2017 Apr 25
1
building Dovecot in Debian 9
Kevin, Regarding the configuration error, your missing a package: zlib1g-dev As far as the deprecation warning, it's a bit more complicated. The source of Dovecot needs to be patched to check for the OpenSSL version and depending on the version use a different DH_generate_numbers function. Regards, Peter -- Peter van der Does Facebook : https://www.facebook.com/petervanderdoes Twitter
2017 Apr 19
0
difficulty in Ubuntu 14.04 apt-getting R 3.3.2
On 19 April 2017 at 09:38, Jennifer Lyon wrote: | Hi: | | I have a Dockerfile, which builds an image which installed R 3.3.2 in | Ubuntu 14.04, but building using that Dockerfile seems to have stopped | working and I am unclear why. | | I believe the relevant error is: | | Some packages could not be installed. This may mean that you have | requested an impossible situation...
2020 Mar 04
2
Running CentOS 6 in a Docker container on a non-CentOS host
I have to support a legacy build that runs on CentOS 6. I?m new to Docker and would like to use the official CentOS 6.10 image (https://github.com/CentOS/sig-cloud-instance-images/blob/da050e2fc6c28d8d72d8bf78c49537247b5ddf76/docker/Dockerfile <https://github.com/CentOS/sig-cloud-instance-images/blob/da050e2fc6c28d8d72d8bf78c49537247b5ddf76/docker/Dockerfile>) as a Docker container on another host (probably some flavor of Ubuntu), but can?t figure out how to tell Docker to find that image. I also need to make some specific customi...
2020 Jun 29
2
R-devel internal errors during check produce?
...vely > simple R code calling unique() not envolving any non base package. > > Martin > > > >> Exact environment where I am reproducing this issue is a > >> fresh ubuntu, no R packages pre-installed docker pull > >> registry.gitlab.com/jangorecki/dockerfiles/r-devel > >> https://gitlab.com/jangorecki/dockerfiles/-/raw/master/r-devel/Dockerfile > > >> On Sat, Jun 27, 2020 at 12:37 AM Jan Gorecki > >> <j.gorecki at wit.edu.pl> wrote: > >>> > >>> Hi R developers, > &gt...
2017 Apr 05
2
Very hard to reproduce bug (?) in R-devel
...tack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g It looks like it gets those settings from running R CMD config CFLAGS with the already-installed version of R (3.3.3) which comes from a .deb package. https://github.com/rocker-org/rocker/blob/master/r-devel/Dockerfile#L76 I've also compiled R (again, in Docker) and tested with that, and gotten the same results. It basically uses just `./configure --without-recommended-packages` and then `make`. [[alternative HTML version deleted]]
2018 Sep 03
2
running a (secondary) samba DC as docker container
Am 03.09.18 um 15:12 schrieb Robert Marcano via samba: > On 09/03/2018 04:10 AM, Stefan G. Weichinger via samba wrote: >> >> As I am learning docker lately I came to the idea of using a docker >> container as a "fallback" DC at sites where there is no budget (or >> understanding) for a 2nd physical DC. >> >> That 2nd DC *might* run as docker
2019 Jul 05
0
Container setup - selftests not running?
.../lists.samba.org/archive/samba/2019-July/224115.html and the lack of recent builds of Samba in Ubuntu, I started to build Samba on my own. > I installed a new virtual machine with Ubuntu 18.04.2 (LTS) server (+ssh), installed docker and docker-compose, and then tried to build using the following Dockerfile: > > --- Dockerfile begin --- > # https://docs.docker.com/develop/develop-images/multistage-build/ > # https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact > > # https://wiki.samba.org/index.php/Build_Samba_from_Source > # obviously you can onl...
2020 Jun 27
0
R-devel internal errors during check produce?
So the unique.default is from the R tools package during checks. I don't see those issues on CRAN checks. Exact environment where I am reproducing this issue is a fresh ubuntu, no R packages pre-installed docker pull registry.gitlab.com/jangorecki/dockerfiles/r-devel https://gitlab.com/jangorecki/dockerfiles/-/raw/master/r-devel/Dockerfile On Sat, Jun 27, 2020 at 12:37 AM Jan Gorecki <j.gorecki at wit.edu.pl> wrote: > > Hi R developers, > > On R-devel (2020-06-24 r78746) I am getting those two new exceptions > during R check. I fo...