Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
docker build . \
--pull=true \
--file=alpine/Dockerfile \
--tag="$IMAGE_NAME:alpine-3.8.1" \
--tag="$IMAGE_NAME:alpine" \
--label="org.opencontainers.image.source=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" \
--label="org.opencontainers.image.revision=$GITHUB_SHA" \
--label="org.opencontainers.image.created=$(date --rfc-3339=seconds)"
Expand All @@ -39,7 +39,7 @@ jobs:
docker build . \
--pull=true \
--file=alpine/Dockerfile \
--tag="$IMAGE_NAME:debian-3.8.1" \
--tag="$IMAGE_NAME:debian" \
--label="org.opencontainers.image.source=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" \
--label="org.opencontainers.image.revision=$GITHUB_SHA" \
--label="org.opencontainers.image.created=$(date --rfc-3339=seconds)"
Expand All @@ -54,5 +54,5 @@ jobs:
- name: Push images to Docker Hub registry
if: github.ref == 'refs/heads/master'
run: |
docker push $IMAGE_NAME:alpine-3.8.1
docker push $IMAGE_NAME:debian-3.8.1
docker push $IMAGE_NAME:alpine
docker push $IMAGE_NAME:debian
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18
FROM alpine:latest

MAINTAINER Corilus Cloud Operations <DG-HC-CareConnect-Hosting@corilus.be>

Expand Down
2 changes: 1 addition & 1 deletion debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim
FROM debian:stable-slim

MAINTAINER Corilus Cloud Operations <DG-HC-CareConnect-Hosting@corilus.be>

Expand Down
Loading