You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
freifunk.hackerspace.ist/dev.Dockerfile

8 lines
231 B

FROM klakegg/hugo:ext-nodejs
WORKDIR /home/docsy/app
RUN mkdir -p /home/docsy/deps
COPY package.json /home/docsy/deps/
COPY package-lock.json /home/docsy/deps/
RUN cd /home/docsy/deps/ && npm install -g
# COPY . .
CMD [ "server" ]