-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* multiple filters feature * bump up
- Loading branch information
Showing
151 changed files
with
5,240 additions
and
4,146 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
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 |
---|---|---|
@@ -1,16 +1,14 @@ | ||
FROM golang:1.19-alpine AS base | ||
FROM golang:1.20-alpine AS base | ||
ARG VERSION | ||
WORKDIR /temp/ | ||
COPY . ./ | ||
RUN go mod download -x | ||
RUN go build -ldflags="-X 'main.Version=$VERSION'" -o /app/bin/lethe | ||
RUN cp -a ./etc /app/etc | ||
RUN cd cli && go build -o /app/bin/lethetool | ||
|
||
FROM alpine:3.15 | ||
FROM alpine:3.18 | ||
COPY --from=base /app /app | ||
RUN set -x \ | ||
&& apk add --no-cache coreutils util-linux | ||
RUN set -x && apk add --no-cache coreutils util-linux curl grep | ||
|
||
WORKDIR /app | ||
WORKDIR /app | ||
ENTRYPOINT ["/app/bin/lethe"] |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION := v0.2.0-beta.1 | ||
VERSION := v0.2.0 | ||
IMAGE := ghcr.io/kuoss/lethe:$(VERSION) | ||
|
||
install-dev: | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.