mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-03 06:28:37 -04:00
6 lines
65 B
Docker
6 lines
65 B
Docker
FROM node:alpine
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
ENTRYPOINT ["npm", "start"]
|