webhook stub

master
NatureFreshMilk 2019-08-21 11:52:59 +02:00
parent a1ee2b179e
commit 04a8fcbc0d
3 changed files with 18 additions and 0 deletions

10
docker/webhook/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:alpine
RUN apk add git
COPY app /app
EXPOSE 8080
CMD ["node", "/app/index.js"]

8
docker/webhook/Makefile Normal file
View File

@ -0,0 +1,8 @@
TAG=registry.rudin.io/x86/webhook-git-updater
build:
docker build -t $(TAG) .
push:
docker push $(TAG)

View File