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
297 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
RUN apt-get install libsass-dev build-essential -y
WORKDIR /dunestorm/khufu
COPY build /dunestorm/khufu/build/
RUN npm i -g serve
ENV KHUFU_DEV_TOKEN $KHUFU_DEV_TOKEN
CMD ["serve", "-s", "build", "-l", "52026"]
# EXPOSE PORTS
EXPOSE 52026