From c55adcd35742962de42028443dd635c819e08ab1 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Sun, 23 Jan 2022 17:40:57 +0300 Subject: [PATCH] Use `debian:stable-slim` as the base --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52440c8c8..26104bbac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN npm run build ### Base of the builder image -FROM golang:1.17-buster AS builder-base +FROM golang:1.17-bullseye AS builder-base # Set necessary environment variables needed for our image. ENV CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH} @@ -83,7 +83,7 @@ RUN cd .. && /bin/bash build_extensions.sh ### The shipped image ARG ARCH=amd64 -FROM up9inc/debian-pcap:buster-slim-${ARCH} +FROM up9inc/debian-pcap:stable-slim-${ARCH} WORKDIR /app