From e98984f94062881f4a3c28e0bc63b42e1aedae09 Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Wed, 19 May 2021 12:27:32 +0000 Subject: [PATCH] Update matrix-webhook/Dockerfile, matrix-webhook/Makefile files --- matrix-webhook/Dockerfile | 6 ++---- matrix-webhook/Makefile | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) 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