-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
51 lines (37 loc) · 1.07 KB
/
Dockerfile
File metadata and controls
51 lines (37 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Dockerfile for creating VILLASframework documentation
#
# Author: Steffen Vogel <post@steffenvogel.de>
# SPDX-FileCopyrightText: 2014-2022 Institute for Automation of Complex Power Systems, EONERC
# SPDX-FileCopyrightText: 2025 OPAL-RT Germany GmbH
# SPDX-License-Identifier: Apache-2.0
###################################################################################
FROM node:23.11-bookworm AS deps
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=en_US.UTF-8
RUN apt-get update && \
apt-get -y install \
git \
dia \
make \
xsltproc \
findutils \
locales \
python3
RUN yarn global add @redocly/cli
FROM deps AS dev
# create a non-root user for vscode to use
ARG USERNAME=node
RUN apt-get install sudo \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME
EXPOSE 3000
ENTRYPOINT [ "yarn", "start", "--host", "0.0.0.0" ]
FROM deps AS builder
RUN mkdir /doc
WORKDIR /doc
COPY package.json .
RUN yarn
COPY . .
RUN make docs
FROM docker.io/library/nginx:1.21.3
COPY --from=builder /doc/build /usr/share/nginx/html