mirror of https://github.com/google/docsy.git
10 lines
375 B
Docker
10 lines
375 B
Docker
FROM klakegg/hugo:0.95.0-ext-alpine as docsy-user-guide
|
|
|
|
RUN apk update
|
|
RUN apk add git
|
|
COPY package.json /app/docsy/userguide/
|
|
WORKDIR /app/docsy/userguide/
|
|
RUN npm install --production=false
|
|
|
|
CMD ["serve", "--cleanDestinationDir", "--themesDir ../..", "--baseURL http://localhost:1313/", "--buildDrafts", "--buildFuture", "--disableFastRender", "--ignoreCache", "--watch"]
|