gists/dns-pfx-helper/Dockerfile

14 lines
237 B
Text
Raw Normal View History

2024-11-19 20:43:08 +00:00
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"]