added a dockerfile, updateed install.sh to not prompt to accept new host
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
sshpass
|
||||
|
||||
WORKDIR /nextdns
|
||||
COPY install.sh .
|
||||
COPY nextdns.conf .
|
||||
COPY nextdns_install.sh .
|
||||
COPY pw .
|
||||
|
||||
RUN chmod +x install.sh
|
||||
RUN chmod +x nextdns_install.sh
|
||||
|
||||
ENTRYPOINT ["./install.sh"]
|
||||
Reference in New Issue
Block a user