mrmBot-Matrix/Dockerfile.api

15 lines
250 B
Docker
Raw Normal View History

# syntax = edrevo/dockerfile-plus
# Docker/Kubernetes file for running the image API
FROM node:alpine
INCLUDE+ Dockerfile.base
RUN apk add --no-cache redis
RUN service redis start
2021-01-21 02:20:04 +00:00
USER esmBot
2021-02-25 20:11:03 +00:00
EXPOSE 8080 8081
ENTRYPOINT ["node", "api/index.js"]