We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440f3a5 commit 95f71dfCopy full SHA for 95f71df
Dockerfile
@@ -13,12 +13,19 @@ WORKDIR /usr/src/app
13
RUN apt-get update && apt-get install -y --no-install-recommends \
14
bash \
15
build-essential \
16
- gcc-aarch64-linux-gnu \
17
- libc6-dev:arm64 \
+ gcc-aarch64-linux-gnu \
18
libssl-dev \
19
pkg-config \
20
libpq-dev && rm -rf /var/lib/apt/lists/*
21
+# Add ARM64 architecture
22
+RUN dpkg --add-architecture arm64
23
+
24
+# Install ARM64 packages
25
+RUN apt-get update && apt-get install -y --no-install-recommends \
26
+ libc6-dev:arm64 \
27
+ && rm -rf /var/lib/apt/lists/*
28
29
# Install the necessary Rust target for ARM64 (Raspberry Pi 5)
30
RUN rustup target add aarch64-unknown-linux-gnu
31
0 commit comments