From 42434b962a641fbbf0da1f2fd70ae67efaddf53a Mon Sep 17 00:00:00 2001 From: ordinarthur <@arthurbarre.js@gmail.com> Date: Tue, 5 May 2026 19:04:48 +0200 Subject: [PATCH] fix: typos \n\x dans le Dockerfile cassaient le build nginx --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f78c6a9..e883a01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,12 @@ FROM nginx:1.27-alpine COPY landing/ /usr/share/nginx/html/ RUN printf 'server {\n\ - listen 80;\n\x + listen 80;\n\ server_name _;\n\ root /usr/share/nginx/html;\n\ index index.html;\n\ \n\ - location / {\n\x + location / {\n\ try_files $uri $uri/ /index.html;\n\ }\n\ \n\