0

I am using docker running El Capitan.

I'm new to using docker, and I'm having a bit of an issue building an openface docker container. (Openface is an open source face rec program if you aren't familiar).

I have all of the proper repositories and directories with respect to the instructions on https://cmusatyalab.github.io/openface/setup/

Building a Docker Container This builds a Docker container from a locally checked out copy of OpenFace, which will take about 2 hours on a modern machine. Be sure you have checked out the git submodules. Run the following commands from the openface directory.

I have in fact checked out all of the submodules.

XXXX-MacBook-Pro:~ XXXX$ cd /openface
XXXX-MacBook-Pro:openface XXXX$ docker build -t openface .
Sending build context to Docker daemon 260.6 MB
Error response from daemon: No image was generated. Is your Dockerfile  empty?
XXXX-MacBook-Pro:openface XXXX$ 

The dockerfile doesn't appear to be empty.

Any idea what could be causing this?

Here is the docker file: http://jmp.sh/17vxhSe

  • Please add your Dockerfile – Sascha Feb 20 '16 at 12:35
  • OK, I've added a link to the file. – Mterranova Feb 20 '16 at 19:11
  • It should be a small text file: "A Dockerfile is a text document that contains all the commands you would normally execute manually in order to build a Docker image. By calling docker build from your terminal, you can have Docker build your image step by step, executing the instructions successively." – rolfedh Feb 21 '16 at 02:07

1 Answers1

0

20MB Dockerfile? I dont mean the image. What is a Dockerfile?

Sascha
  • 1,156
  • 9
  • 13