I have a python script that need java runtime. I am trying to build a docker image that contains contains both python 3.8 and Java 8. Here is my Dockerfile FROM python:3.8-slim-buster RUN apt-get update && apt-get install -y openjdk-8-jre WORKDIR / ADD ./requirements.txt / ADD ./main.py / RUN pip install -r requirements.txt CMD [ ..
Category : debian-buster
I’ve just seen that the python:3.9-buster image contains the "bluez" package (bluetooth): $ sudo docker run -it python:3.9-buster /bin/bash # apt update # apt-cache policy bluez bluez: Installed: (none) Candidate: 5.50-1.2~deb10u1 Version table: 5.50-1.2~deb10u1 500 500 http://deb.debian.org/debian buster/main amd64 Packages 500 http://security.debian.org/debian-security buster/updates/main amd64 Packages I’m pretty confused by that. Is it safe to remove ..
I’m trying to install Docker using an Ansible Playbook. However, after adding the Docker repo and updating the system, I’m still getting an error saying fatal: [localhost]: FAILED! => {"changed": false, "msg": "No package matching ‘docker-ce’ is available"} The code snippet used is as follows: – name: Add Docker Repository become: yes apt_repository: repo: deb ..
I have the following Dockerfile that hangs on the wget and eventually errors out 300s later. I have run these steps manually inside just the debian:buster container with the exact same behavior. from debian:buster RUN apt update && apt install -y wget RUN wget https://raw.githubusercontent.com/dwyl/english-words/master/words.txt Here is the output: > [3/3] RUN wget https://raw.githubusercontent.com/dwyl/english-words/master/words.txt: #6 ..
Information: Debian Buster .NET 5.0.102 docker version: 20.10.2, build 2291f61 docker-compose Version: 1.28.2, build 67630359 I want to build my docker-compose file which contains a blazor c# hosted server (server, client, shared) and a mysql database. I have a dockerfile included to publish the c# project and execute it. But everytime dotnet tries to publish ..
i am trying to build a minimalistic docker image for one of my applicatoins in my "usual" builds i do not rely on 3rd party applications. This time I need to include a precompiled executeable (xpdf) to the build; My go applications are prebuilt in a builder Docker and then copied over (no dependencies). my ..
i am trying to build a minimalistic docker image for one of my applicatoins in my "usual" builds i do not rely on 3rd party applications. This time I need to include a precompiled executeable (xpdf) to the build; My go applications are prebuilt in a builder Docker and then copied over (no dependencies). my ..
I am trying install docker-compose with pip on Debian 10. The default version is 2.X, but Version 3.7 installed as well as pip3. When I run the command below I get the following error message. I have changed the executable from pip3 to pip3.7 and does not make a difference. Any suggestions? – name: Install ..
Has anybody used dockcross (https://github.com/dockcross/dockcross) to cross compile for their Raspberry Pi4? The Debain buster has GCC compiler 8.3. Are there any official docker images atleast with gcc 8.3 that can be used to cross compile ? Source: Dockerfile..
I am trying to install certbot-auto into a Docker image (via Dockerfile). The newest requirement from certbot-auto is to install via snapd which in turn I cannot use in a container (and according to some other doc I’ve read not recommended due to security reasons). It gives error after following the certbot-auto instructions: # snap ..