feat: migrate from alpine to debian-slim avoid dns resolution error on armv6

This commit is contained in:
RouxAntoine 2022-04-23 10:46:11 +02:00
parent 3fa3f66f98
commit ec34b2ae0d
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
FROM arm32v6/alpine:3.12.1
FROM debian:bullseye
LABEL maintainer="antoinroux@hotmail.fr"
RUN apk update && \
apk add --no-cache dnscrypt-proxy
RUN apt update && \
apt install -y ca-certificates dnscrypt-proxy
COPY ./dnscrypt-proxy.toml /etc/dnscrypt-proxy/dnscrypt-proxy.toml
CMD dnscrypt-proxy -config /etc/dnscrypt-proxy/dnscrypt-proxy.toml
CMD dnscrypt-proxy -config /etc/dnscrypt-proxy/dnscrypt-proxy.toml