Update matrix-webhook/Dockerfile, matrix-webhook/Makefile files

This commit is contained in:
Adrien le Maire 2021-05-19 12:27:32 +00:00
parent f08fce28be
commit e98984f940
2 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -1,5 +1,5 @@
NAMESPACE=alemairebe
VERSION=0.0.2
VERSION=0.0.3
IMAGE=matrix-webhook