From 5c9bb023d5214b8f44189e385ff9e2baf7afa057 Mon Sep 17 00:00:00 2001 From: Namekuji Date: Thu, 29 Dec 2022 09:31:04 +0900 Subject: [PATCH] add package upgrade --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bf95b9..97e803f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,9 +28,10 @@ WORKDIR /audon COPY --from=0 /workspace/dist /audon/audon-fe/dist COPY --from=1 /workspace/audon-bin /audon/ -RUN apt-get update && \ - echo "Etc/UTC" > /etc/localtime && \ - apt-get -y --no-install-recommends install tini \ +RUN echo "Etc/UTC" > /etc/localtime && \ + apt-get update && apt-get upgrade -y && \ + apt-get -y --no-install-recommends install \ + tini \ tzdata \ ca-certificates