blog-pika/Dockerfile
2024-06-20 22:14:33 +02:00

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"]