mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-01-22 01:19:18 -05:00
6 lines
65 B
Docker
6 lines
65 B
Docker
FROM node:alpine
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
ENTRYPOINT ["npm", "start"]
|