-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] fix missing mkcert, fix linting
- Loading branch information
1 parent
58d06c4
commit cba07a2
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/ | ||
|