diff --git a/src/currencyservice/Dockerfile b/src/currencyservice/Dockerfile index a5cd79bb7c..56902e673e 100644 --- a/src/currencyservice/Dockerfile +++ b/src/currencyservice/Dockerfile @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:3.18 as builder +FROM alpine:3.20 as builder RUN apk update && apk add git cmake make g++ grpc-dev protobuf-dev linux-headers @@ -39,7 +39,7 @@ RUN cd /currencyservice \ && make -j$(nproc || sysctl -n hw.ncpu || echo 1) install -FROM alpine:3.18 as release +FROM alpine:3.20 as release RUN apk update && apk add grpc-dev protobuf-dev COPY --from=builder /usr/local /usr/local