Compare commits

...

17 Commits

Author SHA1 Message Date
b90cbd2fe5 using apt-cache
All checks were successful
continuous-integration/drone/push Build is passing
2023-12-13 13:02:39 +01:00
5a06752501 bogus edit for testing
Some checks reported errors
continuous-integration/drone/push Build was killed
2023-12-13 12:56:41 +01:00
58bfaf1970 cleanup
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build was killed
2023-11-30 17:40:44 +01:00
f84bf90797 docker pipeline
Some checks reported errors
continuous-integration/drone/push Build was killed
2023-11-21 16:57:56 +01:00
e9d46944e5 type podman?
Some checks failed
continuous-integration/drone Build is failing
2023-11-15 12:38:25 +01:00
75ad5e3e4e just because eclipse does not like to show dot-files
Some checks reported errors
continuous-integration/drone Build was killed
2023-10-24 17:24:45 +02:00
5ef561e5bd how the hell?
Some checks reported errors
continuous-integration/drone Build was killed
2023-10-24 17:19:01 +02:00
81993c9e38 how the hell? 2023-10-24 17:18:35 +02:00
31502766ab how the hell?
All checks were successful
continuous-integration/drone Build is passing
2023-10-24 17:04:14 +02:00
10c1b930f2 how the hell?
Some checks reported errors
continuous-integration/drone Build encountered an error
2023-10-24 16:58:46 +02:00
ac732e567d how the hell?
Some checks reported errors
continuous-integration/drone Build encountered an error
2023-10-24 16:57:05 +02:00
386faf4b71 custom registry: https://docs.drone.io/plugins/popular/docker/
Some checks reported warnings
continuous-integration/drone Build is passing
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
Security analysis / Trivy scan (push) Has been cancelled
2023-10-23 19:11:13 +02:00
2a8bd27356 adding debug and insecure=true
Some checks reported errors
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
continuous-integration/drone Build was killed
Security analysis / Trivy scan (push) Has been cancelled
2023-10-23 19:06:51 +02:00
64ead81c35 building a docker image
Some checks reported warnings
continuous-integration/drone Build is passing
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
Security analysis / Trivy scan (push) Has been cancelled
2023-10-22 15:34:44 +02:00
de40fe2f9b building a docker image
Some checks reported warnings
continuous-integration/drone Build is passing
Security analysis / Trivy scan (push) Has been cancelled
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
2023-10-22 15:19:15 +02:00
09a2e93897 busybox
Some checks reported errors
continuous-integration/drone Build was killed
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
Security analysis / Trivy scan (push) Has been cancelled
2023-10-21 19:46:51 +02:00
659a3f69b0 need three dashes?
Some checks reported warnings
Publish Docker image / Metadata (push) Has been cancelled
Publish Docker image / Publish (push) Has been cancelled
Security analysis / Trivy scan (push) Has been cancelled
2023-10-21 18:55:36 +02:00
2 changed files with 16 additions and 6 deletions

View File

@@ -1,10 +1,18 @@
kind: pipeline
type: docker
name: salt-docker-master
name: docker-salt-master
platform:
os: linux
arch: arm64
steps:
- name: test
image: alpine
commands:
- echo hello
- echo world
- name: build
image: plugins/docker
settings:
repo: cr.wks/salt
registry: http://cr.wks
insecure: true
debug: true
tags:
- latest

View File

@@ -28,6 +28,8 @@ WORKDIR ${SALT_BUILD_DIR}
# Install packages
# hadolint ignore=DL3008
RUN sed -i 's@deb.debian.org@apt-cache.service.nr5/deb.debian.org@g' /etc/apt/sources.list && \
sed -i 's@security.debian.org@apt-cache.service.nr5/security.debian.org@g' /etc/apt/sources.list
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --yes --quiet --no-install-recommends \
sudo ca-certificates apt-transport-https wget locales openssh-client gpg gpg-agent \