Skip to content

Commit

Permalink
Update alpine Docker tag to v3.18.4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 29, 2023
1 parent 983b61c commit 804b531
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.18.3 AS build
FROM alpine:3.18.4 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.18.3 AS app
FROM alpine:3.18.4 AS app
COPY --from=build /app /app
WORKDIR /hopm
CMD ["/app/bin/hopm", "-d"]

0 comments on commit 804b531

Please sign in to comment.