Spaces:
Runtime error
Runtime error
File size: 746 Bytes
ec83114 411608b 6a641d1 ec83114 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
FROM ghcr.io/puppeteer/puppeteer:latest
# Set environment variables
ENV TOKEN=MTAyOTExOTAzMzEwODM0NDg0Mw.GHRuSg.UJGFPx7vbUBU23sHWzUPastwQXwsi1aWZnKjho \
MSGCHANNEL=1226099247963832351 \
ACCESS_TOKEN=2f763b38ad6c26368f5b6d3c86b2089bb98acfd4 \
CHARACTER_ID=PH7dDFG7FXHnEIcTw8maMJypt142z7HLYqt6Vdz88YE
# Set the working directory
WORKDIR /code
# Copy package.json and install dependencies
COPY package*.json ./
# Change ownership of the files to allow npm install
RUN chown -R node:node /code
# Switch to the node user
USER node
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"]
|