You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Dockerfile for a Node.js cypherx bot FROM node:20-alpine WORKDIR /app # Install dependencies COPY package*.json ./ RUN npm ci --only=production # Copy source COPY . . ENV NODE_ENV=production # Use the port your bot or webhook server listens on EXPOSE 3000 # Use your start script (adjust if different) CMD ["npm", "start"]