DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

ref: 5a5c2271fddd84eebe46773504e1a25f6d21a21c liljamo-dev-zola/Dockerfile -rw-r--r-- 238 bytes
5a5c2271Jonni Liljamo feat: a bit of text on the index page 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM alpine:edge AS builder

RUN apk add zola

RUN mkdir /src
WORKDIR /src

COPY . /src

RUN zola build

# --

FROM nginx:1.25.3-alpine

COPY --from=builder /src/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf