-
Notifications
You must be signed in to change notification settings - Fork 392
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 #654 from orgads/alpine-update
Update alpine version in dockerfiles
- Loading branch information
Showing
2 changed files
with
14 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 |
---|---|---|
@@ -1,5 +1,16 @@ | ||
FROM alpine:3.10 | ||
FROM alpine:3.18 | ||
|
||
RUN apk add --no-cache binutils make cmake gcc g++ ncurses-static libpcap-dev ncurses-dev gsl-dev git | ||
RUN apk add --no-cache \ | ||
binutils \ | ||
cmake \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
gsl-dev \ | ||
gsl-static \ | ||
libpcap-dev \ | ||
make \ | ||
ncurses-dev \ | ||
ncurses-static | ||
|
||
CMD cd /src && rm -f CMakeCache.txt && cmake . -DBUILD_STATIC=1 -DUSE_PCAP=1 -DUSE_GSL=1 && make |
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 @@ | ||
FROM alpine:3.13 | ||
FROM alpine:3.18 | ||
|
||
RUN apk add --no-cache \ | ||
binutils \ | ||
|