opentofu.org/Dockerfile
Janos 80f7dbf0ff
Adding build container (#220)
This commit adds a build container to make it easier for people without
NodeJS/npm to run the website locally.

Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com>
2023-11-29 14:44:06 +00:00

8 lines
154 B
Docker

FROM node:18
WORKDIR /work
COPY package.json /work
COPY package-lock.json /work
RUN npm i
CMD ["npm", "run", "start", "--", "--host","0.0.0.0"]