switch to docker instead of podman
parent
f68b70b634
commit
68f5d1bb13
|
@ -1,5 +1,5 @@
|
|||
FROM alpine
|
||||
ADD plugin.sh /bin/
|
||||
RUN chmod +x /bin/plugin.sh
|
||||
RUN apk -Uuv add podman ca-certificates
|
||||
RUN apk -Uuv add docker
|
||||
ENTRYPOINT /bin/plugin.sh
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
podman login -u ${PLUGIN_USERNAME} -p ${PLUGIN_PASSWORD} git.spacegirl.nl
|
||||
podman image load --input ${PLUGIN_IMAGE_TAR}
|
||||
podman image tag memejoin-rs git.spacegirl.nl/${PLUGIN_REPO}:${PLUGIN_TAG}
|
||||
podman image push git.spacegirl.nl/${PLUGIN_REPO}:${PLUGIN_TAG}
|
||||
docker login -u $PLUGIN_USERNAME -p $PLUGIN_PASSWORD git.spacegirl.nl
|
||||
docker image load --input $PLUGIN_IMAGE_TAR
|
||||
docker image tag memejoin-rs git.spacegirl.nl/$PLUGIN_REPO:$PLUGIN_TAG
|
||||
docker image push git.spacegirl.nl/$PLUGIN_REPO:$PLUGIN_TAG
|
||||
|
|
Loading…
Reference in New Issue