Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update alpine Docker tag to v3.18.3 - autoclosed #138

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM traefik:v2.10.4 AS traefik

FROM alpine:3.18.2 AS rathole
FROM alpine:3.18.3 AS rathole
RUN apk add nodejs curl && \
wget -O rathole.zip https://github.com/rapiz1/rathole/releases/download/v0.4.8/rathole-x86_64-unknown-linux-musl.zip && \
unzip rathole.zip

FROM alpine:3.18.2 AS node_modules
FROM alpine:3.18.3 AS node_modules
RUN apk add nodejs npm
COPY package.json package-lock.json ./
RUN npm install --no-audit --no-progress --omit=dev

FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk add nodejs npm
COPY --from=node_modules /node_modules /node_modules
COPY --from=traefik /usr/local/bin/traefik /usr/local/bin/traefik
Expand Down