Skip to content

Commit

Permalink
change base image to debian
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Mar 27, 2024
1 parent 32cdac9 commit fd70428
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 fd70428

Please sign in to comment.