We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5168fc commit f314d85Copy full SHA for f314d85
.docker/Dockerfile
@@ -4,8 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
4
ENV TZ=Etc/UTC
5
6
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
7
- && echo $TZ > /etc/timezone \
8
- && git config --global --add safe.directory /var/www/html
+ && echo $TZ > /etc/timezone
9
10
RUN apt-get update \
11
&& apt-get install -y --no-install-recommends \
@@ -17,7 +16,8 @@ RUN apt-get update \
17
16
software-properties-common \
18
unzip \
19
wget \
20
- && a2enmod rewrite
+ && a2enmod rewrite \
+ && git config --global --add safe.directory /var/www/html
21
22
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - \
23
&& apt-get install -y --no-install-recommends nodejs \
0 commit comments