Dunestash Public Frontend 0.0.1-a.1
This commit is contained in:
commit
fe36970476
67 changed files with 2179 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal 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
|
Reference in a new issue