-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfc7e95
commit 88cd0af
Showing
2 changed files
with
33 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM golang:1.23.4-alpine | ||
|
||
WORKDIR /app | ||
|
||
COPY go.mod . | ||
COPY go.sum . | ||
RUN go mod download | ||
|
||
COPY *.go . | ||
COPY store/*.go store/ | ||
COPY schema.sql . | ||
RUN go build -o clidle . | ||
|
||
FROM scratch | ||
|
||
COPY --from=0 /app/clidle . | ||
|
||
ENV CLICOLOR_FORCE=1 | ||
ENV CLIDLE_DATA_DIR=/opt/clidle/data | ||
CMD ["./clidle", "-serve", "0.0.0.0:22"] |
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