8 lines
184 B
Docker
8 lines
184 B
Docker
FROM node:alpine
|
|
RUN apk add git
|
|
|
|
WORKDIR /service
|
|
RUN git clone https://gitea.frontblock.me/fb-dist/admin.git dist
|
|
|
|
EXPOSE 8080 20000
|
|
ENTRYPOINT ["node", "dist/FrontblockAdmin.js"] |