You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
198 B
Docker

FROM denoland/deno:alpine as builder
WORKDIR /app
ADD . .
RUN deno task build
FROM nginx:alpine
EXPOSE 8080
ADD ./nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /app/_site /var/www/html