Files
fb-admin/Dockerfile
T
2019-08-28 01:36:54 +02:00

7 lines
175 B
Docker

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