miom.space/Dockerfile
2022-01-16 22:04:02 +01:00

13 lines
304 B
Docker

FROM denoland/deno:alpine as build-stage
WORKDIR /app
RUN apk update && apk add bash
RUN deno run -A https://deno.land/x/lume/install.ts
COPY . /app/
RUN ./build.sh
FROM caddy:2.4.6-alpine
COPY --from=build-stage /app/_site /srv/miom.space/
COPY --from=build-stage /app/Caddyfile /etc/caddy/Caddyfile