mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-02-09 05:40:09 +00:00
10 lines
213 B
Docker
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
|