Files
lunarfront-manager/Dockerfile
Ryan Moon a483759964
Some checks failed
Build & Release / build (push) Has been cancelled
fix: install git and openssh in container for chart operations
2026-04-03 15:25:58 -05:00

18 lines
425 B
Docker

FROM oven/bun:1 AS base
WORKDIR /app
FROM base AS install
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production
FROM base
RUN apt-get update && apt-get install -y git openssh-client && rm -rf /var/lib/apt/lists/*
COPY --from=install /app/node_modules ./node_modules
COPY src ./src
COPY frontend ./frontend
COPY package.json ./
ENV NODE_ENV=production
EXPOSE 3000
CMD ["bun", "run", "src/index.ts"]