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

FROM node:latest
RUN apt-get update && apt-get upgrade -y
WORKDIR /dunestorm/khufu
COPY package.json .
RUN npm i --only=prod
COPY server server
COPY build build
ENV KHUFU_DEV_TOKEN $KHUFU_DEV_TOKEN
CMD ["npm", "start"]
EXPOSE 52026