Add dns-pfx-helper/Dockerfile

This commit is contained in:
Tristan D. 2024-11-19 20:43:08 +00:00
parent e1e17ba876
commit 8bbf797422

14
dns-pfx-helper/Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM ubuntu:23.10
WORKDIR /app
RUN apt-get update \
&& apt-get upgrade \
&& apt-get install -y openssl inotify-tools fish
RUN mkdir ./mnt
RUN mkdir ./mnt/in
RUN mkdir ./mnt/out
ADD ./entrypoint.sh .
ENTRYPOINT ["./entrypoint.sh"]