diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,7 @@ -FROM openjdk:slim +# hadolint ignore=DL3007 +FROM eclipse-temurin:latest -ARG VERSION=6.4 +ARG VERSION=6.6 WORKDIR /home/languagetool @@ -8,6 +9,7 @@ SHELL ["/bin/bash", "-eufo", "pipefail", "-c"] # hadolint ignore=DL3008 RUN \ + userdel ubuntu && \ groupadd -g 1000 languagetool && \ adduser \ --uid 1000 \ |