Skip to content

Commit fd70428

Browse files
authored
change base image to debian
1 parent 32cdac9 commit fd70428

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Dockerfile

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
FROM alpine:3.19
1+
FROM debian:bullseye-slim
22

33
ENV REVIEWDOG_VERSION=v0.17.1
44

5+
RUN apt-get update \
6+
&& apt-get install -y --no-install-recommends \
7+
ca-certificates \
8+
git \
9+
wget \
10+
&& apt-get clean \
11+
&& rm -rf /var/lib/apt/lists/*
12+
513
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
614
RUN wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b /usr/local/bin/
715

8-
RUN apk --no-cache add git && \
9-
apk --no-cache add bash && \
10-
rm -rf /var/lib/apt/lists/*
11-
1216
COPY entrypoint.sh /entrypoint.sh
1317

1418
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)