Skip to content

Commit

Permalink
Update alpine Docker tag to v3.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jul 23, 2024
1 parent 5f4b094 commit f5aa207
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.20.1 AS build
FROM alpine:3.20.2 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.20.1 AS app
FROM alpine:3.20.2 AS app
COPY --from=build /app /app
WORKDIR /hopm
CMD ["/app/bin/hopm", "-d"]

0 comments on commit f5aa207

Please sign in to comment.