Compare commits

..

No commits in common. "8caca309b2c3efad4fd262f45daf4adaebc864d2" and "2e1c38ec38a6d7425ca39921f573148dee2659df" have entirely different histories.

5 changed files with 0 additions and 47 deletions

View file

@ -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

View file

@ -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" ]

View file

@ -1,5 +0,0 @@
FROM alpine:3.20.1
# Install base
RUN apk add --no-cache docker docker-compose bash
CMD [ "/bin/bash" ]

View file

@ -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" ]

View file

@ -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" ]