Add Hugo Dockerfile

This commit is contained in:
Benjamin Hays 2024-04-28 12:59:00 -04:00
parent a48fd2c518
commit 059f74a760
2 changed files with 14 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM alpine:latest
RUN apk add --update hugo
WORKDIR /opt/app/
COPY . .
EXPOSE 1313
CMD ["hugo", "server", "--bind=0.0.0.0", "--baseURL=http://localhost:1313/"]

3
run-docker.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
sudo docker build -t personalsite .
sudo docker run -p 1313:1313 personalsite