Skip to content

Commit

Permalink
Merge pull request #65 from reviewdog/feature/chage_base_image
Browse files Browse the repository at this point in the history
change base image to debian
  • Loading branch information
shogo82148 committed Mar 27, 2024
2 parents 32cdac9 + fd70428 commit d56874c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit d56874c

Please sign in to comment.