-
Notifications
You must be signed in to change notification settings - Fork 44
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 #62 from whatwewant/fix/docker-build-on-ubuntu-can…
…not-use-in-alpine fix: docker build on ubuntu cannot use in alpine (fix #61)
- Loading branch information
Showing
2 changed files
with
3 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 |
---|---|---|
|
@@ -19,7 +19,8 @@ RUN GOOS=linux \ | |
-v -o chatgpt-for-chatbot-feishu | ||
|
||
# Server | ||
FROM whatwewant/go:v1.20-1 | ||
# FROM whatwewant/go:v1.20-1 | ||
FROM whatwewant/zmicro:v1 | ||
|
||
LABEL MAINTAINER="Zero<[email protected]>" | ||
|
||
|
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 @@ | ||
package main | ||
|
||
// Version is the version of lighthouse | ||
var Version = "1.7.6" | ||
var Version = "1.7.7" |