mirror of
https://github.com/Luzifer/docker-php5-nginx.git
synced 2024-11-08 06:00:09 +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
|
||||
|
||||
ONBUILD RUN mkdir -p /application
|
||||
ONBUILD ADD . /application
|
||||
RUN mkdir -p /application
|
||||
ADD . /application
|
||||
|
||||
EXPOSE 80
|
||||
CMD ["/usr/local/bin/container-run.sh"]
|
||||
|
|
Loading…
Reference in a new issue