-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Steffen Vogel <[email protected]>
- Loading branch information
Showing
8 changed files
with
52 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
FROM ubuntu:latest | ||
|
||
RUN apt update | ||
RUN apt install -y git golang curl sudo | ||
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash - && \ | ||
sudo apt-get install -y nodejs | ||
RUN apt-get --assume-yes update | ||
RUN apt-get --assume-yes install \ | ||
git \ | ||
golang \ | ||
curl \ | ||
sudo | ||
|
||
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | \ | ||
sudo -E bash - && \ | ||
sudo apt-get --assume-yes install \ | ||
nodejs | ||
|
||
RUN go install -tags extended github.com/gohugoio/hugo@latest | ||
|
||
RUN cp /root/go/bin/hugo /usr/bin/hugo | ||
|
||
EXPOSE 1313/tcp | ||
|
||
WORKDIR /dpsim/docs/hugo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters