🐳 Fixes dockerfile

This commit is contained in:
2025-10-25 17:58:30 +02:00
parent 6afa5763a6
commit 447d99baa4
3 changed files with 8 additions and 2 deletions

View File

@@ -6,12 +6,12 @@ COPY bun.lock* package.json ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
RUN bun run generate
FROM oven/bun:latest as runner
WORKDIR /app
COPY --from=build /app/dist ./
COPY --from=build /app/.output/public ./
EXPOSE 3000
CMD ["bun", "x", "serve", "--single"]

3
app/pages/kontakt.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<p>Lorem ipsum</p>
</template>

3
app/pages/pridaj-sa.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<p>Lorem ipsum</p>
</template>