mirror of
https://github.com/hempyhemp/hh-auto-reply.git
synced 2026-06-08 18:04:57 +00:00
✨ feat(Dockerfile): Обновлены зависимости и пакеты для установки Playwright.
All checks were successful
Deploy / deploy (push) Successful in 1m55s
All checks were successful
Deploy / deploy (push) Successful in 1m55s
This commit is contained in:
@@ -26,9 +26,15 @@ RUN yarn prisma generate
|
|||||||
FROM node:22-slim AS runner
|
FROM node:22-slim AS runner
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends openssl && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
openssl \
|
||||||
|
libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 \
|
||||||
|
libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 \
|
||||||
|
libxrandr2 libgbm1 libasound2 \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
RUN corepack enable && npm install -g opencode-ai
|
RUN corepack enable && npm install -g opencode-ai
|
||||||
|
|
||||||
|
COPY --from=builder /root/.cache/ms-playwright /root/.cache/ms-playwright
|
||||||
COPY --from=builder /app/node_modules ./node_modules
|
COPY --from=builder /app/node_modules ./node_modules
|
||||||
COPY --from=builder /app/src ./src
|
COPY --from=builder /app/src ./src
|
||||||
COPY --from=builder /app/prisma ./prisma
|
COPY --from=builder /app/prisma ./prisma
|
||||||
|
|||||||
Reference in New Issue
Block a user