Skip to content

Commit 5066c66

Browse files
authored
Merge pull request #147 from Ayesh/fix/dockerfile-env-formatting
fix: `devcontainer/Dockerfile` - use `ENV KEY=VAL` format #0000
2 parents 620e5a6 + aaacdc2 commit 5066c66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

templates/.devcontainer/Dockerfile.j2

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ ARG USERNAME=vscode
1111
ARG USER_UID=1000
1212
ARG USER_GID=$USER_UID
1313

14-
ENV APACHE_RUN_USER $USERNAME
15-
ENV APACHE_RUN_GROUP $USERNAME
16-
ENV APACHE_LOCK_DIR /var/lock/apache2
17-
ENV APACHE_LOG_DIR /var/log/apache2
18-
ENV APACHE_PID_FILE /var/run/apache2/apache2.pid
14+
ENV APACHE_RUN_USER=$USERNAME
15+
ENV APACHE_RUN_GROUP=$USERNAME
16+
ENV APACHE_LOCK_DIR=/var/lock/apache2
17+
ENV APACHE_LOG_DIR=/var/log/apache2
18+
ENV APACHE_PID_FILE=/var/run/apache2/apache2.pid
1919

2020
# Create a non-root user with the specified UID and GID
2121
RUN groupadd --gid $USER_GID $USERNAME \

0 commit comments

Comments
 (0)