Spaces:
Paused
Paused
File size: 436 Bytes
ce927c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | FROM quay.io/ayanokojix2306/kojixsophia:latest
# Clone the repository
RUN git clone https://github.com/ayanokojix-1/SOPHIA-MD /home/chri
# Change ownership of the directory to the 'node' user
RUN chown -R node:node /home/chri
# Switch to the 'node' user
USER node
# Set the working directory
WORKDIR /home/chri
# Install dependencies
RUN npm install
# Expose the port
EXPOSE 7860
# Run the start.sh script
CMD ["npm" , "start" ] |