troylusty.com/Dockerfile

13 lines
250 B
Text
Raw Normal View History

2025-01-18 21:50:40 +00:00
FROM oven/bun:alpine as bun
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"]
RUN ["bun", "run", "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