Compare commits

..

3 Commits

Author SHA1 Message Date
20f7e33309
keep only latest docker release
All checks were successful
continuous-integration/drone/tag Build is passing
2022-03-10 14:43:10 +01:00
0d107f80e1
update drone
All checks were successful
continuous-integration/drone/tag Build is passing
2021-12-12 22:08:49 +01:00
4e305387fe
update OS 2021-12-12 22:08:40 +01:00
3 changed files with 16 additions and 56 deletions

View File

@ -1,77 +1,37 @@
kind: pipeline kind: pipeline
type: docker
name: default name: default
steps: steps:
- name: build-alpine
image: plugins/docker:linux-amd64
pull: always
settings:
dockerfile: Dockerfile-alpine
daemon_off: false
dry_run: true
repo: docker.asperti.com/paspo/angry-squid
tags:
- latest
- alpine-latest
when:
event:
exclude:
- tag
- name: build-debian
image: plugins/docker:linux-amd64
pull: always
settings:
dockerfile: Dockerfile-debian
daemon_off: false
dry_run: true
repo: docker.asperti.com/paspo/angry-squid
tags:
- debian-latest
when:
event:
exclude:
- tag
- name: build_and_publish-alpine - name: build_and_publish-alpine
image: plugins/docker:linux-amd64 image: plugins/docker:linux-amd64
pull: always
settings: settings:
dockerfile: Dockerfile-alpine username:
auto_tag: true from_secret: docker_username
auto_tag_suffix: alpine
force_tag: true
daemon_off: false
password: password:
from_secret: docker_password from_secret: docker_password
dockerfile: Dockerfile-alpine
registry: docker.asperti.com registry: docker.asperti.com
repo: docker.asperti.com/paspo/angry-squid repo: docker.asperti.com/paspo/angry-squid
tags: tags:
- latest - latest
- alpine-latest - alpine-latest
username: force_tag: true
from_secret: docker_username
when:
event:
- tag
- name: build_and_publish-debian - name: build_and_publish-debian
image: plugins/docker:linux-amd64 image: plugins/docker:linux-amd64
pull: always
settings: settings:
dockerfile: Dockerfile-debian username:
auto_tag: true from_secret: docker_username
auto_tag_suffix: debian
force_tag: true
daemon_off: false
password: password:
from_secret: docker_password from_secret: docker_password
dockerfile: Dockerfile-debian
registry: docker.asperti.com registry: docker.asperti.com
repo: docker.asperti.com/paspo/angry-squid repo: docker.asperti.com/paspo/angry-squid
tags: tags:
- debian-latest - debian-latest
username: force_tag: true
from_secret: docker_username
when: trigger:
event: event:
- tag - tag

View File

@ -1,4 +1,4 @@
FROM alpine:3.12 FROM alpine:3.15
RUN apk -U upgrade && \ RUN apk -U upgrade && \
apk add squid perl && \ apk add squid perl && \

View File

@ -1,4 +1,4 @@
FROM debian:10 FROM debian:11
RUN apt-get update && \ RUN apt-get update && \
apt-get -y upgrade && \ apt-get -y upgrade && \