Skip to content

Commit 04bb25b

Browse files
committed
Try to not mess up with the bind volumes
1 parent 606dad9 commit 04bb25b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

configs/resolv.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nameserver 1.1.1.1
2+
nameserver 1.0.0.1
3+
options edns0

dockerfiles/Dockerfile.base

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ CheckSpace
4141
SigLevel = Never
4242

4343
[core]
44-
Server = http://fl.us.mirror.archlinuxarm.org/$arch/$repo
44+
Server = http://de3.mirror.archlinuxarm.org/$arch/$repo
4545
[extra]
46-
Server = http://fl.us.mirror.archlinuxarm.org/$arch/$repo
46+
Server = http://de3.mirror.archlinuxarm.org/$arch/$repo
4747
[community]
48-
Server = http://fl.us.mirror.archlinuxarm.org/$arch/$repo
48+
Server = http://de3.mirror.archlinuxarm.org/$arch/$repo
4949
EOF
5050

5151
# --- Bootstrap: fetch ALARM keyring with sigs disabled ---
@@ -65,7 +65,7 @@ RUN sed -i 's/#DisableSandbox/DisableSandbox/' /etc/pacman.conf $OUT/etc/pacman.
6565
# NOTE: explicitly include bash (base alone may not provide it)
6666
RUN pacman --config /etc/pacman.conf -Syu --noconfirm base zsh
6767

68-
RUN printf 'nameserver 1.1.1.1\nnameserver 1.0.0.1\noptions edns0\n' > /etc/resolv.conf || true
68+
COPY configs/resolv.conf /etc/resolv.conf
6969

7070
# Optional locale scaffolding
7171
RUN echo "en_US.UTF-8 UTF-8" > ${OUT}/etc/locale.gen && \

0 commit comments

Comments
 (0)