forked from CWAD/relibre
5 lines
211 B
Docker
5 lines
211 B
Docker
FROM nginx:alpine
|
|
COPY proxy/nginx-site.conf /etc/nginx/conf.d/default.conf
|
|
COPY . /usr/share/nginx/html
|
|
HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD wget -qO- http://localhost/ > /dev/null || exit 1
|