troylusty.com/Dockerfile

13 lines
262 B
Text
Raw Normal View History

2025-01-23 18:57:33 +00:00
FROM oven/bun:latest as bun
2025-01-18 21:50:40 +00:00
USER bun
2024-12-23 21:18:55 +00:00
WORKDIR /usr/src/app
COPY . .
2025-01-18 21:50:40 +00:00
RUN ["bun", "install", "--frozen-lockfile"]
2025-02-24 17:00:20 +00:00
RUN ["bunx", "--bun", "astro", "build"]
2024-12-23 21:18:55 +00:00
FROM ghcr.io/static-web-server/static-web-server:latest
WORKDIR /
2025-01-18 21:50:40 +00:00
COPY --from=bun /usr/src/app/dist /public