diff --git a/standalone/Dockerfile b/standalone/Dockerfile index b6faf7f..feff5be 100644 --- a/standalone/Dockerfile +++ b/standalone/Dockerfile @@ -8,7 +8,7 @@ ARG JAM_REPO_REF=master ARG JM_SERVER_REPO=https://github.com/JoinMarket-Org/joinmarket-clientserver ARG JM_SERVER_REPO_REF=master -ARG NODE_VERSION=22.9.0 +ARG NODE_VERSION=22.11.0 ARG ALPINE_VERSION=3.20.3 ARG DEBIAN_VERSION=bullseye-20240926-slim ARG DINIT_VERSION=0.19.0 @@ -137,8 +137,7 @@ COPY --chown=tor:tor torrc /etc/tor/torrc COPY nginx/snippets/proxy-params.conf /etc/nginx/snippets/proxy-params.conf COPY nginx/default.conf /etc/nginx/conf.d/default.conf -COPY jam-entrypoint.sh / -RUN chmod +x /jam-entrypoint.sh +COPY --chmod=0755 jam-entrypoint.sh / # nginx EXPOSE 80 diff --git a/ui-only/Dockerfile b/ui-only/Dockerfile index 5c75eda..15caf57 100644 --- a/ui-only/Dockerfile +++ b/ui-only/Dockerfile @@ -5,7 +5,7 @@ ARG MAINTAINER='Jam https://github.com/joinmarket-webui' ARG JAM_REPO=https://github.com/joinmarket-webui/jam ARG JAM_REPO_REF=master -ARG NODE_VERSION=22.9.0 +ARG NODE_VERSION=22.11.0 ARG ALPINE_VERSION=3.20.3 FROM node:${NODE_VERSION}-alpine AS node @@ -53,8 +53,7 @@ COPY nginx/snippets/proxy-params.conf /etc/nginx/snippets/proxy-params.conf # the `.template` suffix) into `/etc/nginx/conf.d/`. COPY nginx/templates/default.conf.template /etc/nginx/templates/default.conf.template -COPY jam-entrypoint.sh / -RUN chmod +x /jam-entrypoint.sh +COPY --chmod=0755 jam-entrypoint.sh / ENTRYPOINT [ "/jam-entrypoint.sh" ]