We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69939f8 commit 48c4d53Copy full SHA for 48c4d53
1 file changed
docker/Dockerfile
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
2
3
WORKDIR /var/www/html
4
5
-ENV DEBIAN_FRONTEND noninteractive
+ENV DEBIAN_FRONTEND=noninteractive
6
7
# upgrade
8
RUN apt-get update && apt-get upgrade -y && apt-get autoremove -y
@@ -33,6 +33,7 @@ COPY . /var/www/html
33
RUN rm -rf /var/www/html/.git /var/www/html/vendor /var/www/html/node_modules
34
RUN npm install --force
35
RUN npm run build
36
+RUN rm -rf /var/www/html/node_modules
37
RUN composer install --no-dev
38
RUN chown -R www-data:www-data /var/www/html \
39
&& chmod -R 755 /var/www/html/storage /var/www/html/bootstrap/cache
0 commit comments