09e3b6ca66
Build and Push Image / build (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
312 B
Docker
18 lines
312 B
Docker
# Stoat Role Bot — self-hosted Stoat (stoat.chat) role assignment
|
|
FROM node:22-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
RUN npm install --omit=dev
|
|
|
|
COPY bot/ /app/bot/
|
|
|
|
ENV CONFIG_PATH=/app/config
|
|
ENV PREFIX=!
|
|
|
|
RUN useradd -m -u 1001 botuser && chown -R botuser /app
|
|
USER botuser
|
|
|
|
CMD ["node", "bot/index.js"]
|