Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
| 8 |
-
RUN
|
| 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
|