diff options
| author | 2023-05-28 18:03:34 +0200 | |
|---|---|---|
| committer | 2023-05-28 18:03:34 +0200 | |
| commit | 0292b2f1f3a8cba3179467bba6c6af6bd0e97453 (patch) | |
| tree | 65f2b10459c6046bc74556298a90d93187e80f1e /.devcontainer/Dockerfile | |
| parent | eeefbdf9c720790b83cc82fd981929bf4d699120 (diff) | |
Improve Dev Container (#5423)
* Improve Dev Container
PHPStan was failing in Dev Container
* Update Docker to Alpine Linux 3.18
* New DATA_PATH environment variable
* README
Diffstat (limited to '.devcontainer/Dockerfile')
| -rw-r--r-- | .devcontainer/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a2c1a2a2b..73073dcf1 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.18 ENV TZ UTC SHELL ["/bin/ash", "-eo", "pipefail", "-c"] @@ -26,6 +26,7 @@ RUN adduser --ingroup www-data --disabled-password 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' |
