-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
65 lines (51 loc) · 1.65 KB
/
Dockerfile
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Dockerfile for creating VILLASframework documentation
#
# @author Steffen Vogel <post@steffenvogel.de>
# @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
# @license GNU General Public License (version 3)
#
# VILLASnode
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###################################################################################
FROM docker.io/library/node:16-bullseye 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