demo-frontend/Dockerfile

13 lines
323 B
Text
Raw Normal View History

2025-01-16 14:19:59 +01:00
FROM node:20
RUN mkdir /app
2025-01-16 14:19:59 +01:00
WORKDIR /app
COPY . .
RUN chmod 755 -R *
RUN npm install
2025-01-16 14:19:59 +01:00
EXPOSE 5173
# Change the CMD to see what's in the directory when it starts
#CMD ["sh", "-c", "ls -la && pwd && echo '---' && npm run dev -- --host 0.0.0.0"]
#CMD ["sleep","infinity"]
2025-01-16 14:19:59 +01:00
#CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]