Skip to content

Commit

Permalink
chore: update package version
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-2369 committed Jan 18, 2025
1 parent 3c2e8b3 commit 66081cf
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 21 deletions.
4 changes: 2 additions & 2 deletions debian11-python-shadowsocksr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-20241223-slim
FROM debian:bullseye-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand All @@ -11,7 +11,7 @@ USER shadowsocksr

RUN git clone --branch manyuser "https://github.com/shadowsocksrr/shadowsocksr.git" /home/shadowsocksr/shadowsocksr

RUN echo '#!/bin/bash' > /home/shadowsocksr/shadowsocksr/shadowsocks/start.sh \
RUN echo '#!/bin/bash -euo pipefail' > /home/shadowsocksr/shadowsocksr/shadowsocks/start.sh \
&& echo 'cat << EOF > /home/shadowsocksr/shadowsocksr/shadowsocks/config.json' >> /home/shadowsocksr/shadowsocksr/shadowsocks/start.sh \
&& echo '{' >> /home/shadowsocksr/shadowsocksr/shadowsocks/start.sh \
&& echo '"server":"0.0.0.0",' >> /home/shadowsocksr/shadowsocksr/shadowsocks/start.sh \
Expand Down
5 changes: 2 additions & 3 deletions debian12-codeserver/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-20241223-slim
FROM debian:bookworm-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand Down Expand Up @@ -48,8 +48,7 @@ RUN curl "https://get.sdkman.io" --location --output - | bash

RUN curl "https://sh.rustup.rs" --location --output - | bash -s -- -y --default-toolchain none

RUN echo "#!/bin/sh" > /home/eric2369/start.sh \
&& echo "set -eu" >> /home/eric2369/start.sh \
RUN echo "#!/bin/bash -euo pipefail" > /home/eric2369/start.sh \
&& echo "exec /usr/bin/code-server --bind-addr 0.0.0.0:8080 --auth password --disable-telemetry --disable-update-check /home/eric2369/project" >> /home/eric2369/start.sh \
&& chmod +x /home/eric2369/start.sh

Expand Down
10 changes: 5 additions & 5 deletions debian12-nodejs-typescript-salesforcecli-chromium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-20241223-slim
FROM debian:bookworm-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand All @@ -9,10 +9,10 @@ ARG TARGETPLATFORM
RUN set -eux; \
case "${TARGETPLATFORM}" in \
"linux/amd64") \
URL="https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-x64.tar.xz"; \
URL="https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-x64.tar.xz"; \
;; \
"linux/arm64") \
URL="https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-arm64.tar.xz"; \
URL="https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-arm64.tar.xz"; \
;; \
*) \
echo "Unsupported platform: ${TARGETPLATFORM}"; \
Expand All @@ -21,12 +21,12 @@ RUN set -eux; \
esac; \
curl "${URL}" --location | tar --extract --xz --directory=/usr/local --strip-components=1

RUN npm install [email protected].2 [email protected] @salesforce/cli@2.70.7 -g \
RUN npm install [email protected].3 [email protected] @salesforce/cli@2.72.21 -g \
&& npm cache clean --force

RUN mkdir -p /root/.config/sf \
&& echo '["sfdx-git-delta"]' > /root/.config/sf/unsignedPluginAllowList.json \
&& sf plugins install sfdx-git-delta@5.52.0 \
&& sf plugins install sfdx-git-delta@6.1.1 \
&& npm cache clean --force

RUN apt-get update \
Expand Down
10 changes: 5 additions & 5 deletions debian12-nodejs-typescript-salesforcecli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-20241223-slim
FROM debian:bookworm-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand All @@ -9,10 +9,10 @@ ARG TARGETPLATFORM
RUN set -eux; \
case "${TARGETPLATFORM}" in \
"linux/amd64") \
URL="https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-x64.tar.xz"; \
URL="https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-x64.tar.xz"; \
;; \
"linux/arm64") \
URL="https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-arm64.tar.xz"; \
URL="https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-arm64.tar.xz"; \
;; \
*) \
echo "Unsupported platform: ${TARGETPLATFORM}"; \
Expand All @@ -21,12 +21,12 @@ RUN set -eux; \
esac; \
curl "${URL}" --location | tar --extract --xz --directory=/usr/local --strip-components=1

RUN npm install [email protected].2 [email protected] @salesforce/cli@2.70.7 -g \
RUN npm install [email protected].3 [email protected] @salesforce/cli@2.72.21 -g \
&& npm cache clean --force

RUN mkdir -p /root/.config/sf \
&& echo '["sfdx-git-delta"]' > /root/.config/sf/unsignedPluginAllowList.json \
&& sf plugins install sfdx-git-delta@5.52.0 \
&& sf plugins install sfdx-git-delta@6.1.1 \
&& npm cache clean --force

ENTRYPOINT ["/usr/bin/dumb-init", "--"]
Expand Down
4 changes: 2 additions & 2 deletions debian12-serverstatusrust-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-20241223-slim
FROM debian:bookworm-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand Down Expand Up @@ -27,7 +27,7 @@ RUN set -eux; \
unzip /home/serverstatus/serverstatus.zip -d /home/serverstatus; \
rm /home/serverstatus/serverstatus.zip

RUN echo '#!/bin/bash' > /home/serverstatus/start.sh \
RUN echo '#!/bin/bash -euo pipefail' > /home/serverstatus/start.sh \
&& echo 'exec /home/serverstatus/stat_client --addr "$ADDR" --user "$USER" --pass "$PASS" --interval "$INTERVAL"' >> /home/serverstatus/start.sh \
&& chmod +x /home/serverstatus/start.sh

Expand Down
4 changes: 2 additions & 2 deletions debian12-serverstatusrust-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm-20241223-slim
FROM debian:bookworm-20250113-slim
LABEL authors="eric2369"

RUN apt-get update \
Expand Down Expand Up @@ -29,7 +29,7 @@ RUN set -eux; \

RUN mkdir --parents /home/serverstatus/config \
&& mv /home/serverstatus/config.toml /home/serverstatus/config/config.toml \
&& echo '#!/bin/bash' > /home/serverstatus/start.sh \
&& echo '#!/bin/bash -euo pipefail' > /home/serverstatus/start.sh \
&& echo 'exec /home/serverstatus/stat_server -c /home/serverstatus/config/config.toml' >> /home/serverstatus/start.sh \
&& chmod +x /home/serverstatus/start.sh

Expand Down
2 changes: 1 addition & 1 deletion portainer-server/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
traefik:
image: "traefik:3.2.3"
image: "traefik:3.3.2"
container_name: "traefik-container"
command:
- "--entryPoints.web.address=:80"
Expand Down
2 changes: 1 addition & 1 deletion traefik/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
traefik:
image: "traefik:3.2.3"
image: "traefik:3.3.2"
container_name: "traefik-container"
command:
- "--entryPoints.web.address=:80"
Expand Down

0 comments on commit 66081cf

Please sign in to comment.