# Start with Node.js 18 on Alpine FROM node:18-alpine # Install Git RUN apk add --no-cache git # Create the working directory inside the container WORKDIR /app # Clone the repo (you can specify a branch or commit if desired) RUN git clone https://github.com/smogon/pokemon-showdown.git . # Install the npm dependencies RUN npm install # Copy the example config to config.js (or provide your own) RUN cp config/config-example.js config/config.js # Expose the default Showdown port EXPOSE 8000 # Finally, run Showdown CMD ["node", "pokemon-showdown", "start"]