Skip to content

Commit

Permalink
fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
jizusun committed Feb 5, 2024
1 parent 1d82246 commit 53f6d66
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
FROM python:3.11.4-alpine

ENV REVIEWDOG_VERSION=v0.17.0

RUN set -eux \
apk --update add git gcc musl-dev \
RUN apk --no-cache add git gcc musl-dev \
&& wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} \
&& pip install detect-secrets[word_list] \
&& rm -rf /var/cache/apk/*
&& pip install detect-secrets[word_list]

COPY baseline2rdf.py /usr/local/bin/baseline2rdf
COPY entrypoint.sh /entrypoint.sh
Expand Down

0 comments on commit 53f6d66

Please sign in to comment.