Browse Source
Merge pull request #31 from toelke/renovate/debian-12.x
chore(deps): update debian docker tag to v12
master
Philipp Riederer
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
test-in-docker/Dockerfile
|
|
@ -1,4 +1,4 @@ |
|
|
|
FROM debian:11 AS builder |
|
|
|
FROM debian:12 AS builder |
|
|
|
|
|
|
|
RUN apt update && apt install -y unzip libpcap-dev build-essential git cmake && rm -rf /var/lib/dpkg/lists/* |
|
|
|
|
|
|
@ -16,7 +16,7 @@ WORKDIR /build |
|
|
|
|
|
|
|
RUN cmake /src/lwip-ftpd/test-in-docker/src && make -j |
|
|
|
|
|
|
|
FROM debian:11 AS runner |
|
|
|
FROM debian:12 AS runner |
|
|
|
|
|
|
|
RUN apt update && apt install -y libpcap0.8 valgrind && rm -rf /var/lib/dpkg/lists/* |
|
|
|
|
|
|
|