From fd704285b316e36a80ee19a525519ed234a8bdf1 Mon Sep 17 00:00:00 2001 From: srz_zumix Date: Wed, 27 Mar 2024 22:30:55 +0900 Subject: [PATCH] change base image to debian --- Dockerfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f1ce10..9f0b252 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,18 @@ -FROM alpine:3.19 +FROM debian:bullseye-slim ENV REVIEWDOG_VERSION=v0.17.1 +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + ca-certificates \ + git \ + wget \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} RUN wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b /usr/local/bin/ -RUN apk --no-cache add git && \ - apk --no-cache add bash && \ - rm -rf /var/lib/apt/lists/* - COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]