We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 925f28b commit 7ef3b76Copy full SHA for 7ef3b76
Dockerfile
@@ -12,14 +12,11 @@ COPY . ./
12
13
COPY .dev/default.conf /etc/nginx/conf.d/default.conf
14
15
-RUN cp .env.example .env
16
-RUN composer install --no-dev
+RUN cp .env.example .env && composer install --no-dev
17
18
-EXPOSE 80
19
-EXPOSE 443
+EXPOSE 80 443
20
21
-RUN chown -R www-data:www-data .
22
-RUN chmod -R 777 storage/* bootstrap/cache /var/run/php
+RUN chown -R www-data:www-data . && chmod -R 777 storage/* bootstrap/cache /var/run/php
23
24
ENTRYPOINT ["ash", ".dev/entrypoint.sh"]
25
0 commit comments