summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-09-21 09:54:01 +0200
committerGravatar GitHub <noreply@github.com> 2024-09-21 09:54:01 +0200
commite165cf6b4394118613d2eff36fc0a06c2c661641 (patch)
tree178ee30c1ef1c3f706a2f660b3f855b571d8fd06 /.devcontainer
parentc3b3de42b777a77e0deb46d2e671728c936ea94f (diff)
Docker LegacyKeyValueFormat (#6819)
* Docker LegacyKeyValueFormat https://docs.docker.com/reference/build-checks/legacy-key-value-format/ * Also for devcontainer
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile16
1 files changed, 8 insertions, 8 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 0cd30b89e..81317ea71 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,6 +1,6 @@
FROM alpine:3.20
-ENV TZ UTC
+ENV TZ=UTC
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
RUN apk add --no-cache \
@@ -23,12 +23,12 @@ RUN rm -f /etc/apache2/conf.d/languages.conf /etc/apache2/conf.d/info.conf \
RUN adduser --ingroup www-data --disabled-password developer && \
echo "developer ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/developer
-ENV COPY_LOG_TO_SYSLOG On
-ENV COPY_SYSLOG_TO_STDERR On
-ENV CRON_MIN ''
-ENV DATA_PATH ''
-ENV FRESHRSS_ENV 'development'
-ENV LISTEN '0.0.0.0:8080'
-ENV TRUSTED_PROXY 0
+ENV COPY_LOG_TO_SYSLOG=On
+ENV COPY_SYSLOG_TO_STDERR=On
+ENV CRON_MIN=''
+ENV DATA_PATH=''
+ENV FRESHRSS_ENV='development'
+ENV LISTEN='0.0.0.0:8080'
+ENV TRUSTED_PROXY=0
EXPOSE 8080