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