From 246889a488812cfe2206860417e8740fca984367 Mon Sep 17 00:00:00 2001 From: Sung-ho Kim <42758339+lancard@users.noreply.github.com> Date: Fri, 27 Jan 2023 10:32:09 +0900 Subject: [PATCH] Update alpine version The bash installation was not successful, so I proceeded with the alpine versionup. --- pinpoint-agent/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinpoint-agent/Dockerfile b/pinpoint-agent/Dockerfile index 4eaa9e8..83864bc 100644 --- a/pinpoint-agent/Dockerfile +++ b/pinpoint-agent/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.7 +FROM alpine:3.17.1 ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.5.0} ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-agent-${PINPOINT_VERSION}.tar.gz @@ -19,4 +19,4 @@ RUN apk add --update curl bash \ VOLUME ["/pinpoint-agent"] ENTRYPOINT ["/usr/local/bin/configure-agent.sh"] -CMD ["tail", "-f", "/dev/null"] \ No newline at end of file +CMD ["tail", "-f", "/dev/null"]