mirror of
https://github.com/unraid/api.git
synced 2025-12-30 21:19:49 -06:00
36 lines
656 B
Docker
36 lines
656 B
Docker
FROM node:22.18.0-bookworm-slim AS plugin-builder
|
|
|
|
# Install build tools and dependencies
|
|
RUN apt-get update -y && apt-get install -y \
|
|
bash \
|
|
# Real PS Command (needed for some dependencies)
|
|
procps \
|
|
python3 \
|
|
libvirt-dev \
|
|
jq \
|
|
zstd \
|
|
git \
|
|
build-essential \
|
|
unzip
|
|
|
|
RUN git config --global --add safe.directory /app
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN corepack enable && pnpm install
|
|
|
|
# Install a simple http server
|
|
RUN npm install -g http-server
|
|
|
|
# Expose port 5858
|
|
EXPOSE 5858
|
|
|
|
COPY scripts/entrypoint.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
ENTRYPOINT [ "/start.sh" ]
|
|
|
|
CMD [ "pnpm", "run", "build:watcher" ]
|