Skip to content
Snippets Groups Projects

Draft: build debian package

3 files
+ 33
14
Compare changes
  • Side-by-side
  • Inline

Files

#!/bin/bash
#!/bin/sh
# Also generated by chatGPT
# Name of your Docker image
IMAGE_NAME="gcli"
# Version of your Docker image
IMAGE_VERSION="latest"
# Build and tag the Docker image using Docker Buildx
docker buildx build -t "$IMAGE_NAME:$IMAGE_VERSION" .
# Optionally, you can push the image to a Docker registry
# docker push "$IMAGE_NAME:$IMAGE_VERSION"
IMAGE_NAME=gcli
IMAGE_VERSION=latest
docker buildx build -t $IMAGE_NAME:$IMAGE_VERSION .
Loading