Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Earlopain committed Jan 23, 2024
1 parent b988f00 commit dda42db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,32 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# https://stackoverflow.com/questions/1620918/cmake-and-libpthread
set(THREADS_PREFER_PTHREAD_FLAG ON)

# https://cmake.org/cmake/help/latest/policy/CMP0135.html
cmake_policy(SET CMP0135 NEW)

include(FetchContent)

FetchContent_Declare(
httplib
GIT_REPOSITORY https://github.com/yhirose/cpp-httplib
GIT_TAG v0.14.1
GIT_TAG v0.14.3
)

FetchContent_Declare(
json
GIT_REPOSITORY https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent
GIT_TAG v3.11.2
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz
)

FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v3.4.0
GIT_TAG v3.5.2
)

FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt
GIT_TAG 10.1.1
GIT_TAG 10.2.1
)

FetchContent_Declare(
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM alpine:3.18 as builder
FROM alpine:3.19 as builder

RUN apk --no-cache add sqlite-dev cmake git build-base

WORKDIR /iqdb
COPY . .
RUN make release

FROM alpine:3.18
FROM alpine:3.19

RUN apk --no-cache add sqlite-libs binutils

Expand Down

0 comments on commit dda42db

Please sign in to comment.