FROM docker.io/nginx:1.21.0

# copy the files builded with npm run build
COPY build /var/www
COPY nginx.conf /etc/nginx/nginx.conf

EXPOSE 3040

ENTRYPOINT ["nginx","-g","daemon off;"]