mirror of
https://forgejo.merr.is/annika/isl-vue3.git
synced 2025-12-11 12:26:36 -05:00
11 lines
261 B
Docker
11 lines
261 B
Docker
FROM oven/bun:1-alpine as build-stage
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN bun install
|
|
RUN bun run build
|
|
|
|
FROM nginx:stable-alpine as release
|
|
|
|
COPY --from=build-stage /app/docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|