Unable to find image 'xxxx' lokal

Im Grunde erstellte ich eine asp.net mvc-Projekt. Ich habe ein Dockerfile in den Projekt-Ordner.

FROM microsoft/aspnet:1.0.0-rc1-update1
ADD . /app
WORKDIR /app/approot
EXPOSE 5004
ENTRYPOINT ["./web"]

Nun ich öffne das Andockfenster Quickstart Terminal auf meinem Windows-desktop. Die Ausführung des Befehls

docker build -t hellodocker:0.1.0 .

Sehen das Ergebnis
Unable to find image 'xxxx' lokal

Aber ich kann nicht finden das Bild, wenn ich es laufen lasse.
Unable to find image 'xxxx' lokal

Also, was ist falsch?

BEARBEITEN

Danke für den Kommentar, ich korrigiere die Tippfehler. Aber es gibt einen anderen Fehler.
Unable to find image 'xxxx' lokal

BEARBEITEN-1

Wenn ich den ENTRYPOINT als ENTRYPOINT ["dnx", "-p", "project.json", "web"]

Dann bekomme ich eine andere Fehlermeldung:
Unable to reslolve project from /app/approot

BEARBEITEN-2

Den Kontext, in dem Verzeichnis ist:
Unable to find image 'xxxx' lokal

InformationsquelleAutor der Frage | 2016-04-13

Schreibe einen Kommentar