460d136d21
Spun out of the hbm-books working folder into its own repo. A small backend+frontend+COBOL admin tool for managing Foundry VTT worlds (socket inspection, join/shutdown debugging).
8 lines
147 B
Docker
8 lines
147 B
Docker
FROM oven/bun:latest
|
|
WORKDIR /app
|
|
COPY package.json tsconfig.json ./
|
|
RUN bun install
|
|
COPY src ./src
|
|
EXPOSE 3000
|
|
CMD ["bun", "run", "src/index.ts"]
|