This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
khufu/Dockerfile

10 lines
167 B
Text
Raw Normal View History

2021-11-06 20:11:52 -06:00
FROM node:16
WORKDIR /dunemask/net/khufu
2021-08-06 19:56:59 -06:00
COPY package.json .
2021-11-06 20:11:52 -06:00
RUN npm i
COPY public public
COPY src src
RUN npm run build:react
2021-08-06 19:56:59 -06:00
COPY server server
CMD ["npm", "start"]