Omoo / Dockerfile
another-ban's picture
Update Dockerfile
d028dec verified
raw
history blame contribute delete
272 Bytes
# Use Node.js base image
FROM node:20
# Set working directory
WORKDIR /app
# Copy server.js to the container
COPY server.js /app/
# Install ws library
RUN npm install ws
# Expose WebSocket server port
EXPOSE 7860
# Start the WebSocket server
CMD ["node", "server.js"]