]> git.openstreetmap.org Git - stateofthemap.git/blob - Dockerfile
Add Container and GHA to build
[stateofthemap.git] / Dockerfile
1 # https://github.com/nginxinc/docker-nginx-unprivileged
2 FROM nginxinc/nginx-unprivileged:stable-alpine as webserver
3
4 RUN echo "absolute_redirect off;" >/etc/nginx/conf.d/no-absolute_redirect.conf
5
6 COPY . /usr/share/nginx/html
7
8 # Test configuration during docker build
9 RUN nginx -t
10
11 # Port the container will listen on
12 EXPOSE 8080