6 lines
262 B
Docker
6 lines
262 B
Docker
FROM nginx:1.27-alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY index.html services.html tarifs.html souverainete.html contact.html mentions-legales.html robots.txt sitemap.xml /usr/share/nginx/html/
|
|
COPY assets /usr/share/nginx/html/assets
|
|
EXPOSE 80
|