diff --git a/Makefile b/Makefile deleted file mode 100644 index c6eecef..0000000 --- a/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -BUILD_TAG = $(shell date +'%Y.%m.%d') -IMAGE ?= packager -REGISTRY=registry.pinkhaj.world -ENGINE=podman - -build: - echo "Building franky-$(IMAGE) with tag $(BUILD_TAG)" - $(ENGINE) build -t liliesh/franky-$(IMAGE):$(BUILD_TAG) $(IMAGE)/. - $(ENGINE) image tag liliesh/franky-$(IMAGE):$(BUILD_TAG) liliesh/franky-$(IMAGE):latest - -publish: - $(ENGINE) build -t liliesh/franky-$(IMAGE):$(BUILD_TAG) $(IMAGE)/. - $(ENGINE) push localhost/liliesh/franky-$(IMAGE):$(BUILD_TAG) $(REGISTRY)/liliesh/franky-$(IMAGE):$(BUILD_TAG) - $(ENGINE) push localhost/liliesh/franky-$(IMAGE):$(BUILD_TAG) $(REGISTRY)/liliesh/franky-$(IMAGE):latest diff --git a/commander/Dockerfile b/commander/Dockerfile deleted file mode 100644 index 69b89fd..0000000 --- a/commander/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM alpine:3.20.1 - -# Install base -RUN apk add --no-cache --upgrade grep -RUN apk add --no-cache bash git openssh -CMD [ "/bin/bash" ] \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index ce1bf68..0000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM alpine:3.20.1 - -# Install base -RUN apk add --no-cache docker docker-compose bash -CMD [ "/bin/bash" ] \ No newline at end of file diff --git a/packager/Dockerfile b/packager/Dockerfile deleted file mode 100644 index 8e0dc80..0000000 --- a/packager/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM rockylinux:9.3 - -# Install base -RUN dnf install -y rpmdevtools rpmlint epel-release -RUN dnf group install -y "Development Tools" -RUN dnf install -y dpkg - -CMD [ "/bin/bash" ] \ No newline at end of file diff --git a/rust/Dockerfile b/rust/Dockerfile deleted file mode 100644 index 56bd259..0000000 --- a/rust/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM rockylinux:9.3 - -# Install base -RUN dnf install -y rpmdevtools rpmlint epel-release -RUN dnf group install -y "Development Tools" -RUN dnf install -y dpkg - -# Install lang specifics -RUN dnf install -y rust cargo -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - -ENV PATH="/root/.cargo/bin:$PATH" - -CMD [ "/bin/bash" ]