Merge pull request #9 from kendrahavens/master

Update README with dockerisms
This commit is contained in:
Alicia Li 2017-09-14 11:29:19 -07:00 коммит произвёл GitHub
Родитель 89150f62e6 0e76b5558b
Коммит 66d1e4907d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -17,7 +17,7 @@ The Windows Communication Foundation (WCF) is a framework for building service-
```
FROM microsoft/wcf
RUN mkdir C:\WcfService
WORKDIR WcfService
RUN powershell -NoProfile -Command \
Import-module IISAdministration; \
@ -25,7 +25,7 @@ RUN powershell -NoProfile -Command \
EXPOSE 83
ADD content/ /WcfService
COPY content/ .
```
You can then build and run the Docker image:
```