Add Hugo Dockerfile
This commit is contained in:
parent
a48fd2c518
commit
059f74a760
11
Dockerfile
Normal file
11
Dockerfile
Normal 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
3
run-docker.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
sudo docker build -t personalsite .
|
||||
sudo docker run -p 1313:1313 personalsite
|
Loading…
Reference in New Issue
Block a user