I am running a Jenkins job, inside a docker container, this job requires doxygen but im getting an error saying – I have doxygen installed in my Docker image, but the path is – Inside my docker image, I want to connect this old path – /opt/fc4-usr-local/bin/doxygen with new path usr/bin/doxygen So whenever my job looks for doxygen it goes
Tag: dockerfile
Dockerfile – can’t unzip files using a shell script
I’m facing an issue unziping files that have been copied on a docker image. I tried using the RUN unzip /file.zip and other techniques that I came across but nothing seems to work. So then I tried adding the unziping action into the a shell script that I use as entrypoint for my docker image. Here is the yaml file
Dockerfile build image error: Distribution contains no modules or packages for namespace package
I’m trying to build a docker image of a python project. My project has one dependency package, “my_package” which needs to be install first. It’s a namespace package. I’m having this error when building docker image of this python project. I can pretty much install everything with RUN pip install XYZ inside Dockerfile but I’m not sure what’s the proper
Build docker image jar file : COPY failed: no source files were specified
I have a leshan server jar file (to which I have made some changes) obtained by running the maven clean install. I specify that I work in linux and I put this jar file inside a “leshan_docker” folder contained in the desktop. within the same folder there is also a dockerfile to build the server image, and it is written
docker-entrypoint exec nginx not found
I’m not sure what I’m doing is correct so fix me if I’m mistaken. This is my dockerfile: I’m trying to add rtmp module to my nginx. I’m trying to run the image with the command below: This is what I received: What is that /docker-entrypoint.sh: 38: exec: nginx: not found? How do I fix it? Answer There is already
docker run failed at “python3: can’t open file”
My code is in directory /test-scripts, details structure is as follows. Run the following command in directory /test-scripts. /test-scripts(master)> And my Dockerfile content is as follows. Use $user, $pwd above to replace the real value in this question. In my opinion, the file IssueAnalyzer.py will be copy from current directory /test-scripts to /testdocker, but actually it is not. Please help
How to pass backtick to Dockerfile CMD?
I have a docker image running java application, its main class is dynamic, in a file called start-class. Traditionally, I started the application like this. Now I want to run these applications in docker containers. This is my Dockerfile. I built the image and run the containers. The command actually executed was this. Single quotes was automatically wrapped outside the
Add Carbone to Docker image
I have installed Carbone on my local Linux machine using the following command and it is working properly. Now, I need to add carbone in my docker image, but I don’t know how to add it to the image. Should I add the npm install command to DockerFile or add it to package.json? I got the following error if I
Windows docker container vs Linux docker container
I am new to the Docker/Kubernetes world in general. As i am just starting with the whole architecture i have the following: Azure Container Service — up and running using Linux for master and agents Docker for windows on my machine — up and running automated build for a .NetCore application on VSTS using Docker task to build and push
Same Docker image forwards X11 one host but not on another
I have created a simple Docker image which contains SSH + xeyes. I run that container, connect to the container via SSH using X11 Forwarding and want to be able to display xeyes. I have built and run the Docker container on host A. When I connect to the container, it does not work Error: Can’t open display: I have