mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 19:50:42 +00:00
Some checks are pending
Auto Create GitHub Release on Version Change / check-version-change (push) Waiting to run
Auto Create GitHub Release on Version Change / create-release (push) Blocked by required conditions
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Build Skyvern TS SDK and publish to npm / check-version-change (push) Waiting to run
Build Skyvern TS SDK and publish to npm / build-and-publish-sdk (push) Blocked by required conditions
23 lines
817 B
XML
23 lines
817 B
XML
FROM node:20.12-slim
|
|
|
|
# Install tini for proper signal handling and zombie reaping
|
|
RUN apt-get update && apt-get install -y --no-install-recommends tini && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY ./skyvern-frontend /app
|
|
COPY ./entrypoint-skyvernui.sh /app/entrypoint-skyvernui.sh
|
|
RUN npm install
|
|
|
|
# Placeholders for runtime injection (will be replaced by entrypoint script)
|
|
ENV VITE_API_BASE_URL=__VITE_API_BASE_URL_PLACEHOLDER__
|
|
ENV VITE_WSS_BASE_URL=__VITE_WSS_BASE_URL_PLACEHOLDER__
|
|
ENV VITE_ARTIFACT_API_BASE_URL=__VITE_ARTIFACT_API_BASE_URL_PLACEHOLDER__
|
|
ENV VITE_SKYVERN_API_KEY=__SKYVERN_API_KEY_PLACEHOLDER__
|
|
|
|
# Build at image time
|
|
RUN npm run build
|
|
|
|
# Use tini as init for proper signal handling and zombie reaping
|
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
|
CMD ["/bin/bash", "/app/entrypoint-skyvernui.sh"]
|
|
|