fix: typos \n\x dans le Dockerfile cassaient le build nginx
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 25s

This commit is contained in:
ordinarthur 2026-05-05 19:04:48 +02:00
parent 269c67ace2
commit 42434b962a

View File

@ -3,12 +3,12 @@ FROM nginx:1.27-alpine
COPY landing/ /usr/share/nginx/html/ COPY landing/ /usr/share/nginx/html/
RUN printf 'server {\n\ RUN printf 'server {\n\
listen 80;\n\x listen 80;\n\
server_name _;\n\ server_name _;\n\
root /usr/share/nginx/html;\n\ root /usr/share/nginx/html;\n\
index index.html;\n\ index index.html;\n\
\n\ \n\
location / {\n\x location / {\n\
try_files $uri $uri/ /index.html;\n\ try_files $uri $uri/ /index.html;\n\
}\n\ }\n\
\n\ \n\