merasabkuch commited on
Commit
c2b6603
1 Parent(s): 3b01c27

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM alpine:latest
4
  # Install dnsmasq and curl (for health checks)
5
  RUN apk --no-cache add dnsmasq curl
6
 
7
- # Create dnsmasq.conf inline with correct formatting
8
- RUN echo "address=/lehrastudio.com/195.179.239.105\nlog-queries\nlisten-address=0.0.0.0" > /etc/dnsmasq.conf
9
 
10
  # Expose port 7860 (the custom DNS port)
11
  EXPOSE 7860/udp
 
4
  # Install dnsmasq and curl (for health checks)
5
  RUN apk --no-cache add dnsmasq curl
6
 
7
+ # Create dnsmasq.conf inline
8
+ RUN printf "address=/lehrastudio.com/195.179.239.105\nlog-queries\nlisten-address=0.0.0.0\n" > /etc/dnsmasq.conf
9
 
10
  # Expose port 7860 (the custom DNS port)
11
  EXPOSE 7860/udp