Skip to content

Commit

Permalink
Update alpine version in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
orgads committed Aug 30, 2023
1 parent 1126a8b commit 6f87758
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 13 additions & 2 deletions docker/Dockerfile
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.full
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 \
Expand Down

0 comments on commit 6f87758

Please sign in to comment.