1
0
mirror of https://github.com/Luzifer/docker-php5-nginx.git synced 2024-09-16 14:18:35 +00:00

Fixed README, ADD has to be called directly

This commit is contained in:
Knut Ahlers 2014-10-03 16:26:36 +02:00
parent 837fa82b7e
commit 47d2323fdc

View File

@ -21,8 +21,8 @@ Create a `Dockerfile` similar to the following in your application code folder:
```
FROM luzifer/php5-nginx
ONBUILD RUN mkdir -p /application
ONBUILD ADD . /application
RUN mkdir -p /application
ADD . /application
EXPOSE 80
CMD ["/usr/local/bin/container-run.sh"]