Merge pull request #22644 from HoussemDellai/edit-hpa-docs

Replaced ADD with COPY in Dockerfile
This commit is contained in:
Kubernetes Prow Robot
2020-07-26 19:08:17 -07:00
committed by GitHub
@@ -47,7 +47,7 @@ The Dockerfile has the following content:
```
FROM php:5-apache
ADD index.php /var/www/html/index.php
COPY index.php /var/www/html/index.php
RUN chmod a+rx index.php
```