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

11 lines
232 B
Text
Raw Normal View History

2021-07-24 23:06:32 -06:00
FROM node:latest
RUN apt-get update && apt-get upgrade -y
WORKDIR /dunestorm/khufu
2021-08-06 19:56:59 -06:00
COPY package.json .
RUN npm i --only=prod
COPY server server
COPY build build
2021-07-24 23:06:32 -06:00
ENV KHUFU_DEV_TOKEN $KHUFU_DEV_TOKEN
2021-08-06 19:56:59 -06:00
CMD ["npm", "start"]
2021-07-24 23:06:32 -06:00
EXPOSE 52026