diff --git a/Dockerfile b/Dockerfile index d9db047..e0d31bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest -RUN apk add --no-cache openjdk25 git +RUN apk add --no-cache openjdk25 RUN mkdir -p /data /data/local diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 865923e..29f378c 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec java -Xmx256m -jar default.pfapp --c=/data/config.json -Dapp.external.management=true -l=. -r="https://repo.kirillius.ru/apps/pf/" \ No newline at end of file +exec java -Xmx256m -Dapp.external.management=true -jar default.pfapp --c=/data/config.json -l=. -r="https://repo.kirillius.ru/apps/pf/" \ No newline at end of file