Skip to content

Commit

Permalink
Fix ENV directive deprecration notice (#16)
Browse files Browse the repository at this point in the history
Fix warning: LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value"

(cherry picked from commit a346d06)
  • Loading branch information
hbenali committed Jun 25, 2024
1 parent 097ec4c commit e478371
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ RUN apt-get -qq update && \
apt-get -qq -y clean && \
rm -rf /var/lib/apt/lists/*

ENV CHAT_APP_DIR /opt/chat-server
ENV CHAT_CONF_DIR /etc/chat-server
ENV CHAT_LOG_DIR /var/log/chat-server
ENV CHAT_APP_DIR=/opt/chat-server
ENV CHAT_CONF_DIR=/etc/chat-server
ENV CHAT_LOG_DIR=/var/log/chat-server

ENV EXO_USER=exo

Expand Down

0 comments on commit e478371

Please sign in to comment.