diff --git a/Dockerfile b/Dockerfile index b28b866..b9f937d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ RUN npm install -g pnpm WORKDIR /app COPY . . -RUN pnpm install && pnpm run build +RUN pnpm install && pnpm run generate FROM nginx:stable-alpine -COPY --from=builder /app/dist /usr/share/nginx/html +COPY --from=builder /app/.output/public /usr/share/nginx/html EXPOSE 80 diff --git a/pages/index.vue b/pages/index.vue index 3b3567f..2fdae66 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -3,8 +3,8 @@ const rStore = useRecipeStore()