Sophia / Dockerfile
Neon-AI's picture
Update Dockerfile
011ab1d verified
raw
history blame contribute delete
178 Bytes
FROM node:20-alpine
WORKDIR /app
#/
#COPY package*.json ./
#RUN npm install --production
COPY . .
# Merge the files before running
RUN node index.js
CMD ["node", "index.js"]