We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32cdac9 commit fd70428Copy full SHA for fd70428
Dockerfile
@@ -1,14 +1,18 @@
1
-FROM alpine:3.19
+FROM debian:bullseye-slim
2
3
ENV REVIEWDOG_VERSION=v0.17.1
4
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
+
13
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
14
RUN wget -O - -q https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | sh -s -- -b /usr/local/bin/
15
-RUN apk --no-cache add git && \
- apk --no-cache add bash && \
- rm -rf /var/lib/apt/lists/*
-
16
COPY entrypoint.sh /entrypoint.sh
17
18
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments