Skip to content

Commit

Permalink
Merge pull request #22 from shalva-an/rpi-fix-and-package-upgrades
Browse files Browse the repository at this point in the history
Raspberry Pi build fixes, package upgrades, debian upgrade
  • Loading branch information
Dadoum authored Aug 17, 2024
2 parents a2fe6a0 + 83542b6 commit 53d5203
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base for builder
FROM debian:bookworm-slim AS builder
FROM debian:stable-slim AS builder
# Deps for builder
RUN apt-get update && apt-get install --no-install-recommends -y ca-certificates ldc git clang dub libz-dev libssl-dev \
&& apt-get clean \
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN DC=ldc2 dub build -c "static" --build-mode allAtOnce -b release --compiler=ldc2

# Base for run
FROM debian:bookworm-slim
FROM debian:stable-slim
RUN apt-get update && apt-get install --no-install-recommends -y ca-certificates curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down
6 changes: 3 additions & 3 deletions dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"dependencies": {
"provision": {
"repository": "git+https://github.com/Dadoum/Provision.git",
"version": "fa028b6f4e6e2704bf43f92031fe5c3223045f64"
"version": "fe879b1148767767481b9c2753d4fd741cb2d7fa"
},
"slf4d": "~>2.1.1",
"vibe-d:web": "~>0.9.7-alpha.2",
"vibe-d:http": "~>0.9.7-alpha.2"
"vibe-d:web": "~>0.9.8",
"vibe-d:http": "~>0.9.8"
},

"configurations": [
Expand Down
24 changes: 13 additions & 11 deletions dub.selections.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
{
"fileVersion": 1,
"versions": {
"automem": "0.6.9",
"automem": "0.6.10",
"cachetools": "0.4.1",
"diet-ng": "1.8.1",
"dxml": "0.4.3",
"eventcore": "0.9.25",
"dxml": "0.4.4",
"dynamic-loader": {"version":"1d9eaa74e7d54c395ce4abfc15a9654ebfd9c7d2","repository":"git+https://github.com/Dadoum/dynamicloader.git"},
"eventcore": "0.9.31",
"libasync": "0.8.6",
"memutils": "1.0.9",
"memutils": "1.0.10",
"mir-linux-kernel": "1.0.1",
"openssl": "3.3.3",
"openssl-static": "1.0.2+3.0.8",
"openssl-static": "1.0.5+3.0.8",
"plist": "~master",
"plist-d": {"version":"d494cf3fe79a2bb20583173c0c8cf85ef33b719e","repository":"git+https://github.com/Dadoum/libplist-d.git"},
"provision": {"version":"fa028b6f4e6e2704bf43f92031fe5c3223045f64","repository":"git+https://github.com/Dadoum/Provision.git"},
"requests": "2.1.1",
"plist-d": {"version":"5020d8e45ca2c77183a44ce04053ccbf8bc83262","repository":"git+https://github.com/Dadoum/libplist-d.git"},
"provision": {"version":"fe879b1148767767481b9c2753d4fd741cb2d7fa","repository":"git+https://github.com/Dadoum/Provision.git"},
"requests": "2.1.3",
"slf4d": "2.1.1",
"stdx-allocator": "2.77.5",
"taggedalgebraic": "0.11.22",
"taggedalgebraic": "0.11.23",
"test_allocator": "0.3.4",
"unit-threaded": "0.10.8",
"vibe-core": "2.2.0",
"vibe-d": "0.9.7-alpha.2"
"vibe-container": "1.3.1",
"vibe-core": "2.9.0",
"vibe-d": "0.9.8"
}
}

0 comments on commit 53d5203

Please sign in to comment.