I am trying to create a docker image using the following command:
docker build -f conf/Dockerfile -t my_app_name .
Dockerfile starts with:
FROM ubuntu:14.04 COPY conf/pubkey pubkey RUN echo 'deb http://downloads.skewed.de/apt/trusty trusty universe' >> /etc/apt/sources.list \ && apt-key add pubkey \ && rm pubkey
And it returns INFO[0000] operation not supported .
No matter what I put after RUN (even RUN echo 1 does not work)
I tried launching the shell in the docker run a7bb092… -it /bin/sh intermediate image ( docker run a7bb092… -it /bin/sh ), but it just throws FATA[0000] Error response from daemon: Cannot start container a7bb092…: operation not supported
How can i fix this?
docker dockerfile
daniel
source share