Skip to content

Commit

Permalink
[TASK] fix missing mkcert, fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelmatseriks committed Nov 12, 2024
1 parent 58d06c4 commit cba07a2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mkcert/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ RUN apk add --no-cache git=~2.45 \

# Install mkcert
# RUN go install filippo.io/[email protected]
RUN git clone https://github.com/FiloSottile/mkcert && cd mkcert \
&& go build -ldflags "-X main.Version=$(git describe --tags)"
WORKDIR /tmp
RUN git clone https://github.com/FiloSottile/mkcert
WORKDIR /tmp/mkcert
RUN go build -ldflags "-X main.Version=$(git describe --tags)"
RUN mv mkcert /usr/local/bin/

# add Docker entrypoint
COPY docker-entrypoint.sh /usr/local/bin/
Expand Down

0 comments on commit cba07a2

Please sign in to comment.