2022-04-13 10:33:00 +00:00
|
|
|
FROM node:12.22.12-stretch-slim
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
|
|
|
2024-06-12 08:44:42 +00:00
|
|
|
RUN apt-get install -y git curl
|
|
|
|
RUN curl -fsSL https://get.pnpm.io/install.sh | sh -
|
2022-04-13 10:33:00 +00:00
|
|
|
|
|
|
|
RUN mkdir /opt/documentation && chown node: /opt/documentation
|
|
|
|
|
|
|
|
USER node
|
|
|
|
|
|
|
|
WORKDIR /opt/documentation
|
|
|
|
|
2024-06-12 08:44:42 +00:00
|
|
|
RUN pnpm install
|
2022-04-13 10:33:00 +00:00
|
|
|
|
2024-06-12 08:44:42 +00:00
|
|
|
CMD [ "pnpm", "run", "serve"]
|