Skip to content

Commit a4e93b5

Browse files
Change ENTRYPOINT syntax in Dockerfile
1 parent 54c32b0 commit a4e93b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

on-prem-ngwaf-integrations/apache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ COPY entrypoint.sh /usr/local/bin/entrypoint.sh
2828
RUN chmod +x /usr/local/bin/entrypoint.sh
2929

3030
# Entrypoint will run the NGWAF agent and start Apache
31-
ENTRYPOINT "/usr/local/bin/entrypoint.sh"
31+
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
3232
# ENTRYPOINT "/bin/bash"
3333

3434
# steps for demo when entrypoint is "/bin/bash"
3535
# 1. start NGWAF Agent. `sigsci-agent &`
3636
# 2. start Apache with module enabled. `apache2ctl -D FOREGROUND &`
37-
# 3. tail the error and apache logs. `tail /var/log/apache2/error.log -f` and `tail /var/log/apache2/access.log -f`
37+
# 3. tail the error and apache logs. `tail /var/log/apache2/error.log -f` and `tail /var/log/apache2/access.log -f`

0 commit comments

Comments
 (0)