summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: f993163d43b1f17b204dcb6350c1a46691829a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
FROM nginx:alpine as adelie

COPY static/ /usr/share/nginx/html/

COPY nginx.conf /etc/nginx/nginx.conf

EXPOSE 80

HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
  CMD wget --quiet --tries=1 --spider http://localhost/ || exit 1