spooky-bot / Dockerfile
Mahfujul's picture
Update Dockerfile
9444b94 verified
raw
history blame contribute delete
No virus
729 Bytes
FROM ghcr.io/puppeteer/puppeteer:latest
# Set environment variables
ENV TOKEN=MTAyOTExOTAzMzEwODM0NDg0Mw.GHRuSg.UJGFPx7vbUBU23sHWzUPastwQXwsi1aWZnKjho \
MSGCHANNEL=1232268387770433566 \
ACCESS_TOKEN=2f763b38ad6c26368f5b6d3c86b2089bb98acfd4 \
CHARACTER_ID=PH7dDFG7FXHnEIcTw8maMJypt142z7HLYqt6Vdz88YE \
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome-stable
# Set the working directory
WORKDIR /code
# Copy package.json and install dependencies
COPY package.json ./
RUN npm install
# Copy the rest of the application code
COPY . .
# Expose any necessary ports
EXPOSE 7860
# Command to run the application
CMD ["npm", "start", "--host", "0.0.0.0", "--port", "7860"]