Skip to content

Commit

Permalink
Update alpine Docker tag to v3.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 13, 2024
1 parent d8252df commit d989d15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM traefik:2.11.0 AS traefik

FROM alpine:3.18.4 AS rathole
FROM alpine:3.19.1 AS rathole
RUN 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.4 AS node_modules
FROM alpine:3.19.1 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.4
FROM alpine:3.19.1
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

0 comments on commit d989d15

Please sign in to comment.