diff --git a/Dockerfile b/Dockerfile index cee2d16..f6e6bfd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ FROM nginx:latest +# Install wget for healthchecks +RUN apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/* + # Remove the default Nginx configuration file RUN rm /etc/nginx/conf.d/default.conf + # Copy our custom configuration COPY nginx.conf /etc/nginx/conf.d/jmpgames.conf