Skip to content

Commit

Permalink
Merge pull request #654 from orgads/alpine-update
Browse files Browse the repository at this point in the history
Update alpine version in dockerfiles
  • Loading branch information
lemenkov authored Jan 11, 2024
2 parents efd9107 + 6f87758 commit 1d42453
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 1d42453

Please sign in to comment.