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
191 B
Docker

FROM node:16
WORKDIR /dunemask/net/khufu
COPY package.json .
RUN npm i
COPY public public
COPY src src
ARG REACT_APP_CAIRO_URL
RUN npm run build:react
COPY server server
CMD ["npm", "start"]