Skip to content

Commit

Permalink
Merge pull request #51 from reviewdog/feature/update_base_image
Browse files Browse the repository at this point in the history
base image change
  • Loading branch information
shogo82148 authored Mar 27, 2024
2 parents dfb6e62 + 1e53a8a commit 49bb375
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
FROM node:18-alpine3.14
FROM node:18-bullseye-slim

ENV MARKDOWNLINT_CLI_VERSION=v0.37.0

RUN npm install -g "markdownlint-cli@$MARKDOWNLINT_CLI_VERSION"

ENV REVIEWDOG_VERSION=v0.15.0

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 apk --no-cache -U add git

COPY entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit 49bb375

Please sign in to comment.