upd
All checks were successful
Deploy Frontend / deploy (push) Successful in 38s

This commit is contained in:
Oscar
2026-06-04 15:49:24 +03:00
parent 17cb1128a6
commit a46f81a402

View File

@@ -8,6 +8,9 @@ RUN pnpm install --frozen-lockfile --ignore-scripts
COPY . . COPY . .
ARG API_BASE
ENV API_BASE=$API_BASE
RUN pnpm exec nuxt generate RUN pnpm exec nuxt generate
FROM nginx:stable-alpine FROM nginx:stable-alpine
@@ -15,7 +18,4 @@ COPY --from=builder /app/.output/public /usr/share/nginx/html
EXPOSE 80 EXPOSE 80
ARG API_BASE=https://api.koptilnya.xyz/test-1/
ENV API_BASE=$API_BASE
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]