more claude tips

This commit is contained in:
Scott Hatlen
2025-10-09 00:38:00 -07:00
parent b249a8c71a
commit ab4ae3f26d

View File

@@ -9,12 +9,22 @@ steps:
- echo "Done"
- name: build
image: docker
image: docker:dind
commands:
- sleep 5 # Wait for Docker daemon to start
- docker build -t scottyah/blog:latest .
- docker push scottyah/blog:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- DOCKER_HOST=tcp://127.0.0.1:2375
privileged: true
# - name: build
# image: docker
# commands:
# - docker build -t scottyah/blog:latest .
# - docker push scottyah/blog:latest
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
- name: deploy
image: kubernetes/client:latest