We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d4c4e0 + aab004b commit 29aaa39Copy full SHA for 29aaa39
Dockerfile
@@ -1,9 +1,13 @@
1
# Use the official Nginx image as a base
2
FROM nginx:latest
3
4
-
5
ARG CONF_TYPE=default
6
+# Adding wget to the container, so we can run Coolify's Healthcheck
7
+RUN apt update \
8
+ && apt install -y wget \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
# Copy the custom Nginx configuration file to the container
12
COPY ${CONF_TYPE}.conf /etc/nginx/conf.d/nginx-template.conf
13
0 commit comments