Files
taco-blog/Dockerfile
taco 2192b9bff1
All checks were successful
Build and Publish Docker Image / build (push) Successful in 21s
Fix exposed port
2026-05-18 02:02:31 -06:00

40 lines
895 B
Docker

# Stage 1
FROM alpine:latest AS base
FROM base AS hugo
# Install the Hugo go app.
RUN apk add --update curl
ARG TARGETARCH
ARG HUGO_VERSION=0.161.1
RUN wget -O "hugo.tar.gz" "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-${TARGETARCH}.tar.gz"
RUN tar -xf "hugo.tar.gz" hugo -C /usr/bin
FROM base AS build
COPY --from=hugo /usr/bin/hugo /bin/hugo
RUN apk add --update git libc6-compat libstdc++
WORKDIR /opt/HugoApp
# Copy Hugo config into the container Workdir.
COPY . .
RUN git submodule update --init --recursive
# Run Hugo in the Workdir to generate HTML.
RUN hugo
# Stage 2
FROM binbashing/owasp-crs-ngxblocker:nginx-alpine
# Set workdir to the NGINX default dir.
WORKDIR /usr/share/nginx/html
# Copy HTML from previous build into the Workdir.
COPY --from=build /opt/HugoApp/public .
# Expose port 8080
EXPOSE 8080/tcp