[dsfr] Squelette pour tests
This commit is contained in:
18
docker/nginx/Dockerfile
Normal file
18
docker/nginx/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
MAINTAINER Jérôme Fix <jerome.fix@zapoyok.info>
|
||||
|
||||
RUN apt-get update && apt-get upgrade --no-install-recommends --no-install-suggests -y && apt-get install --no-install-recommends --no-install-suggests -y \
|
||||
nginx \
|
||||
ca-certificates \
|
||||
gettext-base
|
||||
|
||||
# SSL
|
||||
ADD "ssl/scc-crm.localhost+1-key.pem" "/etc/ssl/private/scc-crm.localhost+1-key.pem"
|
||||
ADD "ssl/scc-crm.localhost+1.pem" "/etc/ssl/certs/scc-crm.localhost+1.pem"
|
||||
|
||||
RUN usermod -u 1000 www-data
|
||||
|
||||
EXPOSE 80 443
|
||||
|
||||
CMD ["nginx"]
|
||||
Reference in New Issue
Block a user