removed unused image

main
Ricard Illa 2022-08-16 12:45:56 +02:00
parent 5b1126933e
commit cf492ec307
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
3 changed files with 0 additions and 36 deletions

View File

@ -1,10 +0,0 @@
FROM alpine:3.14
RUN apk add --update --no-cache \
docker-compose \
docker
COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint
ENTRYPOINT ["/entrypoint"]

View File

@ -1,15 +0,0 @@
IMG_NAME = tasks
REGISTRY=registry.monotremata.xyz:443
IMG=$(REGISTRY)/$(IMG_NAME)
.PHONY: build build-nc push
build: Dockerfile entrypoint.sh
docker build -t $(IMG) .
push: build
docker image push $(IMG)
build-nc: Dockerfile entrypoint.sh
docker build --no-cache -t $(IMG)

View File

@ -1,11 +0,0 @@
#!/bin/sh
set -e
[ -f /tasks/tasks.cron ] && crontab /tasks/tasks.cron
if [ -n "$*" ]; then
exec "$@"
else
exec crond -f -L /dev/stdout
fi