Dunestash Public Frontend 0.0.1-a.1

This commit is contained in:
Dunemask 2021-07-24 23:06:32 -06:00
commit fe36970476
67 changed files with 2179 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
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