22 lines
827 B
Docker
22 lines
827 B
Docker
FROM alpine
|
|
RUN sleep 10
|
|
RUN apk update
|
|
RUN apk add openssl
|
|
RUN apk add nginx
|
|
#COPY srcs/start.sh /root/start.sh
|
|
COPY srcs/nginx.conf /etc/nginx/nginx.conf
|
|
COPY srcs/index.html /var/www/html/index.html
|
|
COPY srcs/style.css /var/www/html/style.css
|
|
WORKDIR /root/
|
|
#RUN adduser --disabled-password admin
|
|
#RUN echo "admin:password" | chpasswd
|
|
RUN openssl genrsa -out nginx.key
|
|
RUN openssl req -new -key nginx.key -out nginx.csr -subj "/C=NL/ST=Friesland/L=Heerenveen/O=localhost/OU=localhost/CN=localhost/emailAddress=djonker@student.codam.nl"
|
|
RUN openssl x509 -req -days 365 -in nginx.csr -signkey nginx.key -out nginx.crt
|
|
RUN mv nginx.crt /etc/ssl/certs/nginx.crt
|
|
RUN mv nginx.key /etc/ssl/private/nginx.key
|
|
RUN chmod 600 /etc/ssl/certs/nginx.crt /etc/ssl/private/nginx.key
|
|
CMD nginx -g 'daemon off;'
|
|
EXPOSE 80/tcp
|
|
EXPOSE 443/tcp
|