-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker image and release improvements (#242)
* Add required packages to official Dockerfile This commit installs packages in the official Docker image that are required for running some GoVPP CLI. Signed-off-by: Ondrej Fabry <[email protected]> * Set user/host for built binaries in release workflow Signed-off-by: Ondrej Fabry <[email protected]> * Add make target comment Signed-off-by: Ondrej Fabry <[email protected]> --------- Signed-off-by: Ondrej Fabry <[email protected]>
- Loading branch information
1 parent
845b9bc
commit 5145075
Showing
4 changed files
with
29 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
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,3 +1,13 @@ | ||
FROM scratch | ||
FROM alpine:3.20 | ||
|
||
RUN set -eux; \ | ||
apk add --no-cache \ | ||
bash \ | ||
git \ | ||
make \ | ||
python3 \ | ||
py3-ply | ||
|
||
COPY govpp / | ||
|
||
ENTRYPOINT ["/govpp"] |
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