mirror of
https://github.com/chevereto/docker.git
synced 2026-01-21 14:42:06 +01:00
10 lines
143 B
Docker
10 lines
143 B
Docker
FROM httpd:2.4
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
RUN mkdir -p ./_assets ./images
|
|
|
|
COPY --chown=www-data chevereto/ .
|
|
|
|
RUN chown www-data: . -R && ls -la
|