This commit is contained in:
parent
6178c08a19
commit
1c1c87a375
2 changed files with 15 additions and 1 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
FROM alpine:latest
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install required packages
|
||||
RUN apk add --no-cache hugo git
|
||||
|
||||
# Clone the website repository
|
||||
RUN git clone https://git.argentumcation.com/mira/website.git /app \
|
||||
&& git submodule update --init --recursive
|
||||
|
||||
CMD ["hugo", "server", "--bind", "0.0.0.0"]
|
|
@ -1,7 +1,7 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="http://127.0.0.1:1313/the-monospace-web/index.css" />
|
||||
{{ partialCached "head.html" . "ArgentumCation"}}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -12,3 +12,5 @@
|
|||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue