links-page/Dockerfile

8 lines
255 B
Docker
Raw Normal View History

2023-10-05 10:15:44 +00:00
FROM node
WORKDIR /project
ADD index.html index.js /project/
2023-10-05 10:41:03 +00:00
EXPOSE 1312
2023-10-05 10:15:44 +00:00
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" ]