8 lines
No EOL
278 B
Docker
8 lines
No EOL
278 B
Docker
FROM alpine:3.17
|
|
RUN apk add build-base bash go
|
|
RUN go install -tags extended github.com/gohugoio/hugo@latest
|
|
RUN useradd -ms /bin/bash tamaki
|
|
USER tamaki
|
|
WORKDIR /home/tamaki
|
|
VOLUME [ "/home/tamaki/coding", "/home/tamaki/.gitconfig", "/home/tamaki/.ssh" ]
|
|
EXPOSE 8080 8000 1313 |