Files
tranquil-pds/frontend/Dockerfile
2026-01-18 16:41:41 +00:00

10 lines
213 B
Docker

FROM denoland/deno:alpine AS builder
WORKDIR /app
COPY . ./
RUN deno task build
FROM nginx:1.29-alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80