mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 10:43:28 +00:00
Update matrix-webhook/Dockerfile, matrix-webhook/Makefile files
This commit is contained in:
parent
8c6ed3d881
commit
2f2aba2f94
29
matrix-webhook/Dockerfile
Normal file
29
matrix-webhook/Dockerfile
Normal file
@ -0,0 +1,29 @@
|
||||
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 npm install -g npm-check-updates
|
||||
RUN ncu -t minor -u \
|
||||
&& ncu -u matrix-appservice-bridge
|
||||
RUN npm install \
|
||||
&& dos2unix docker-start.sh \
|
||||
&& chmod +x docker-start.sh \
|
||||
|
||||
FROM node:16.1.0-alpine3.13
|
||||
|
||||
COPY --from=builder /app /app
|
||||
ENV NODE_ENV=production
|
||||
ENV WEBHOOKS_USER_STORE_PATH=/data/user-store.db
|
||||
ENV WEBHOOKS_ROOM_STORE_PATH=/data/room-store.db
|
||||
ENV WEBHOOKS_DB_CONFIG_PATH=/data/database.json
|
||||
ENV WEBHOOKS_ENV=docker
|
||||
|
||||
WORKDIR /app
|
||||
CMD /app/docker-start.sh
|
||||
|
||||
EXPOSE 9000
|
||||
VOLUME ["/data"]
|
@ -1,5 +1,5 @@
|
||||
NAMESPACE=alemairebe
|
||||
VERSION=0.0.1
|
||||
VERSION=0.0.2
|
||||
|
||||
IMAGE=matrix-webhook
|
||||
|
||||
@ -16,4 +16,5 @@ build:
|
||||
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||||
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||||
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
|
||||
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) matrix-appservice-webhooks-master
|
||||
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) \
|
||||
-f Dockerfile matrix-appservice-webhooks-master
|
||||
|
Loading…
Reference in New Issue
Block a user