Add missing dot in docker build command

This commit is contained in:
jwalter 2017-06-27 16:11:58 +02:00 коммит произвёл GitHub
Родитель acc82b2437
Коммит 43c9dec97f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ This image contains:
Copy `4.7\sample\Dockerfile` to your app directory. You would then be able to build and run the site from the app directory.
```
$ docker build -t aspnet-site --build-arg site_root=/
$ docker build -t aspnet-site --build-arg site_root=/ .
$ docker run -d -p 8000:80 --name my-running-site aspnet-site
```