14 lines
218 B
Docker
14 lines
218 B
Docker
# Dockerfile
|
|
FROM klakegg/hugo:0.83.1-ext-alpine
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy the site files
|
|
COPY . /app
|
|
|
|
# Build the static site
|
|
RUN hugo
|
|
|
|
# Serve the site
|
|
CMD ["hugo", "server", "--bind", "0.0.0.0"]
|