1FROM denoland/deno:alpine AS builder 2WORKDIR /app 3COPY . ./ 4RUN deno task build 5 6FROM nginx:1.29-alpine 7COPY --from=builder /app/dist /usr/share/nginx/html 8COPY nginx.conf /etc/nginx/conf.d/default.conf 9EXPOSE 80