Having problems setting up CLAI container in Ubuntu 14.0.4
See original GitHub issueDescribe the bug I am trying to follow the steps mentioned in the README to set up the CLAI container on my Ubuntu 14.0.4 system (Linux en4119722l 4.4.0-75-generic #96~14.04.1-Ubuntu and Docker version 1.6.2, build 7c8fca2), but the command BuildDockerImage.sh is failing while reporting missing flags
To Reproduce
clai$ sudo ./BuildDockerImage.sh
===============================================================
Phase 1: Building CLAI Container --no-cache
===============================================================
docker: "build" requires 1 argument. See 'docker build --help'.
real 0m0.016s
user 0m0.016s
sys 0m0.000s
Failed to build CLAI Playground Container. Aborting Build.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Assigning a static IP to Ubuntu Server 14.04 LTS
I found I had to include the dns settings: auto lo enp0s25 iface lo inet loopback iface enp0s25 inet static address 192.168.1.128 netmask ......
Read more >How to Install and Use Docker on Ubuntu 14.04 - VEXXHOST
Running a Docker Container. Now, let's see how we can easily setup our Ubuntu container with a bash shell, we will just run...
Read more >Using "tail -f /dev/null" to keep container up fails unexpectedly
Once the issue occurs every restart to the container will cause the container to start and complete. Only a rm and rebuild solves...
Read more >Chapter 4. Setting Up Clair Security Scanning Red Hat Quay 2.9
The Clair project is an open source engine that powers Red Hat Quay Security Scanner to detect vulnerabilities in all images within Red...
Read more >qgeneration.gold.txt - TU Darmstadt
"Problem in installing mysql2 in ubuntu 14.04 in virtual box" "bash comparing multiple column in two files with different length" "How to Move...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Awesome!! @madhavanpallan 👏👏
@sarathsreedharan can you check once if that works for you?
Greetings, I was able to replicate the issue and solve it. I installed ubuntu 14.04 (Grabbed from here:- http://releases.ubuntu.com/14.04/) on a 32GB flash drive. After installing docker, I did run an example container to check my docker running perfectly. Next step was to run the command “sudo ./BuildDockerImage.sh” it was giving out the issue as mentioned above:-
When I ran ‘docker build --help’, I understood the issue. It was the extra flag value that we were passing. Hence, removed the extra flag and ran the below command.
“sudo docker build -f Dockerfile.CLAI -t claiplayground .”