diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..82bcb95 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,6 @@ +{ + "name": "The Altive Handbook", + "build": { + "dockerfile": "Dockerfile" + } +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..53f48a0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest + +# Hugo Extendedのバージョンを指定する。 +ARG HUGO_VERSION=0.121.1 + +# SASSを使用しているため、 hugo_extended をダウンロードして使用する必要がある。 +RUN wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ + && sudo dpkg --install --skip-same-version hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ + && rm hugo_extended_${HUGO_VERSION}_linux-amd64.deb