Skip to content

Commit

Permalink
build: use custom settings for libsqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed Jan 14, 2024
1 parent 71e14b8 commit cabd716
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM ubuntu:mantic-20231128@sha256:cbc171ba52575fec0601f01abf6fdec67f8ed227658cacbc10d778ac3b218307 AS build

ENV DEBIAN_FRONTEND=noninteractive

# Do not install libsqlite3-dev because we want to it without dynamic extension support; we need tcl to build amalgamated version
RUN \
apt-get update && \
apt-get install -y --no-install-recommends ca-certificates cmake git clang make python3-minimal python3-whichcraft nlohmann-json3-dev libsqlite3-dev libev-dev pkgconf && \
apt-get install -y --no-install-recommends ca-certificates cmake git clang make python3-minimal python3-whichcraft nlohmann-json3-dev libev-dev pkgconf tcl && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY . /app
WORKDIR /app
Expand Down

0 comments on commit cabd716

Please sign in to comment.