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.
9 lines
231 B
9 lines
231 B
4 years ago
|
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" ]
|