Skip to content

Commit

Permalink
Update alpine Docker tag to v3.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 22, 2024
1 parent 6fa9f5d commit d4edda0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PKG="git gcc make binutils libc6-compat g++ openssl-dev"

FROM alpine:3.19.1 AS build
FROM alpine:3.20.0 AS build
ARG PKG
#COPY ./hopm /usr/src/hopm
WORKDIR /src
Expand All @@ -9,7 +9,7 @@ RUN apk add --no-cache --virtual build ${PKG} \
&& ./configure --prefix=/app --sysconfdir=/hopm \
&& make && make install

FROM alpine:3.19.1 AS app
FROM alpine:3.20.0 AS app
COPY --from=build /app /app
WORKDIR /hopm
CMD ["/app/bin/hopm", "-d"]

0 comments on commit d4edda0

Please sign in to comment.