links-page/Dockerfile

7 lines
243 B
Docker
Raw Normal View History

2023-10-05 10:15:44 +00:00
FROM node
WORKDIR /project
ADD index.html index.js /project/
LABEL traefik.enable=true
LABEL traefik.http.routers.tws_links.rule=Host(`techwork.zone`)
LABEL traefik.http.routers.tws_links.tls.certresolver=letsencrypt
CMD [ "node", "index.js" ]