diff --git a/matrix-webhook/Dockerfile b/matrix-webhook/Dockerfile index 855f9fc..5952ec2 100644 --- a/matrix-webhook/Dockerfile +++ b/matrix-webhook/Dockerfile @@ -3,14 +3,12 @@ FROM node:16.1.0-alpine3.13 as builder COPY . /app WORKDIR /app ENV NODE_ENV=development -RUN apk add --no-cache -t build-deps make gcc g++ python libc-dev wget git dos2unix \ - && apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates RUN npm install -g npm-check-updates RUN ncu -u matrix-appservice-bridge RUN npm install \ - && dos2unix docker-start.sh \ - && chmod +x docker-start.sh \ + && chmod +x docker-start.sh ENV NODE_ENV=production ENV WEBHOOKS_USER_STORE_PATH=/data/user-store.db diff --git a/matrix-webhook/Makefile b/matrix-webhook/Makefile index 11fa8b3..de7a63b 100644 --- a/matrix-webhook/Makefile +++ b/matrix-webhook/Makefile @@ -1,5 +1,5 @@ NAMESPACE=alemairebe -VERSION=0.0.2 +VERSION=0.0.3 IMAGE=matrix-webhook