mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 16:28:57 +00:00
15 lines
285 B
Docker
15 lines
285 B
Docker
FROM oven/bun:1.2-slim
|
|
WORKDIR /home/bun/app
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install -y ffmpeg && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package.json bun.lock ./
|
|
RUN bun install --frozen-lockfile --production
|
|
|
|
COPY tsconfig.json ./
|
|
COPY src ./src
|
|
|
|
CMD ["bun", "src/index.ts"]
|