From 22d2c594c2874c9c9233a99c197ea962102e3be3 Mon Sep 17 00:00:00 2001 From: l33tlamer <41114098+l33tlamer@users.noreply.github.com> Date: Thu, 26 Oct 2023 01:35:35 +0200 Subject: [PATCH] Create Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..36b5251 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM nginx:1.25.2-alpine3.18 + +WORKDIR /usr/share/nginx/html + +RUN wget -q -O honey.zip https://github.com/dani3l0/honey/releases/download/v2.1.1/honey-v2.1.1-stable.zip && unzip -q -o honey.zip && rm honey.zip + +EXPOSE 80 + +HEALTHCHECK CMD wget -nv --spider --tries=1 http://127.0.0.1:80