ungleich-staticcms/Dockerfile

11 lines
192 B
Text
Raw Normal View History

2024-10-13 02:45:12 +00:00
FROM alpine:3.20
2020-02-07 18:36:25 +00:00
2024-10-13 02:45:12 +00:00
RUN apk add --no-cache make python3 imagemagick
COPY . /build
2022-02-03 11:47:21 +00:00
2024-10-13 02:45:12 +00:00
WORKDIR /build
RUN make build
2022-02-03 11:47:21 +00:00
2024-10-13 02:45:12 +00:00
FROM nginx:alpine
COPY --from=0 /ungleich-staticcms-build /usr/share/nginx/html