mirror of
https://github.com/sune-org/us.proxy.sune.chat.git
synced 2026-04-07 02:02:13 +00:00
8 lines
146 B
Docker
8 lines
146 B
Docker
FROM oven/bun:1-slim
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN bun install --production --no-save
|
|
COPY . .
|
|
EXPOSE 3000
|
|
CMD ["bun", "run", "index.js"]
|