mirror of
https://github.com/sune-org/us.proxy.sune.chat.git
synced 2026-03-16 18:11:01 +00:00
8 lines
164 B
Docker
8 lines
164 B
Docker
FROM oven/bun:1-slim
|
|
WORKDIR /app
|
|
COPY package.json bun.lock* ./
|
|
RUN bun install --frozen-lockfile --production
|
|
COPY . .
|
|
EXPOSE 3000
|
|
CMD ["bun", "run", "index.js"]
|