mirror of
https://github.com/Rushilwiz/bwplus.git
synced 2025-04-04 12:30:19 -04:00
23 lines
286 B
Docker
23 lines
286 B
Docker
FROM golang:1.16-alpine as builder
|
|
|
|
RUN cd $HOME \
|
|
|
|
&& apk add git \
|
|
&& git clone https://github.com/gohugoio/hugo.git \
|
|
|
|
&& cd hugo \
|
|
|
|
&& go install
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
|
|
RUN hugo
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /app/public /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|