removed unused image
parent
5b1126933e
commit
cf492ec307
|
@ -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"]
|
|
@ -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)
|
|
@ -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
|
Loading…
Reference in New Issue