-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1728 from saolof/eawk_improvements
Make eawk accept a custom separator
- Loading branch information
Showing
3 changed files
with
37 additions
and
8 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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
FROM golang:1.18-alpine as builder | ||
RUN apk update && \ | ||
apk add --virtual build-deps make git | ||
FROM golang:1.20-alpine as builder | ||
RUN apk add --no-cache --virtual build-deps make git | ||
# Build Elvish | ||
COPY . /go/src/src.elv.sh | ||
RUN make -C /go/src/src.elv.sh get | ||
|
||
FROM alpine:3.13 | ||
COPY --from=builder /go/bin/elvish /bin/elvish | ||
FROM alpine:3.18 | ||
RUN adduser -D elf | ||
RUN apk update && apk add tmux mandoc man-pages vim curl git | ||
RUN apk update && apk add tmux mandoc man-pages vim curl sqlite git | ||
COPY --from=builder /go/bin/elvish /bin/elvish | ||
USER elf | ||
WORKDIR /home/elf | ||
CMD ["/bin/elvish"] |
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