Skip to content

Commit

Permalink
Merge pull request #3 from Intellection/upgrade_alpine
Browse files Browse the repository at this point in the history
[SRE-4346] Upgrade base image to `alpine:3.20.3`
  • Loading branch information
itskingori authored Oct 16, 2024
2 parents d469ee9 + dd46e33 commit 4ee2b1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test-docker-image
on:
pull_request:
branches:
- 'master'
- 'main'

env:
IMAGE: zappi/s3-sync
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.0

* Upgrade base image to `alpine:3.20.3`.

## 0.1.0

* Initial release.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.17
FROM alpine:3.20.3

RUN apk update && \
apk upgrade && \
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# S3 Sync

[![release-docker-image](https://github.com/Intellection/docker-s3-sync/actions/workflows/release.yml/badge.svg)](https://github.com/Intellection/docker-s3-sync/actions/workflows/release.yml) [![test-docker-image](https://github.com/Intellection/docker-s3-sync/actions/workflows/test.yml/badge.svg)](https://github.com/Intellection/docker-s3-sync/actions/workflows/test.yml)

This Docker container syncs a local directory to an AWS S3 bucket, allowing for easy backups and synchronization of data.

If the specified local directory is empty, it performs an initial sync from the specified S3 bucket. Then, it syncs that directory with the specified S3 bucket. If the local directory was not empty to begin with, it skips the initial sync.
Expand Down

0 comments on commit 4ee2b1a

Please sign in to comment.