Files
fb-admin/Dockerfile
T
2019-08-28 00:58:15 +02:00

7 lines
169 B
Docker

FROM alpine:3.9
RUN apk add npm git
RUN git clone https://gitea.frontblock.me/fb-dist/admin.git dist
EXPOSE 8080 20000
ENTRYPOINT ["node", "dist/FrontblockAdmin.js"]