jake.runyan.dev/Dockerfile
2024-01-26 23:48:46 -08:00

12 lines
161 B
Docker

from node:latest
WORKDIR /srv/
COPY ./website/. /srv/website/
EXPOSE 3000
WORKDIR /srv/website
CMD [ "npx", "docusaurus", "start", "-h0.0.0.0" ]