mirror of
https://github.com/Luzifer/docker-php5-nginx.git
synced 2024-12-20 09:51:19 +00:00
Fixed README, ADD has to be called directly
This commit is contained in:
parent
837fa82b7e
commit
47d2323fdc
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@ Create a `Dockerfile` similar to the following in your application code folder:
|
||||||
```
|
```
|
||||||
FROM luzifer/php5-nginx
|
FROM luzifer/php5-nginx
|
||||||
|
|
||||||
ONBUILD RUN mkdir -p /application
|
RUN mkdir -p /application
|
||||||
ONBUILD ADD . /application
|
ADD . /application
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
CMD ["/usr/local/bin/container-run.sh"]
|
CMD ["/usr/local/bin/container-run.sh"]
|
||||||
|
|
Loading…
Reference in a new issue