https://github.com/infrablocks/docker-base-alpine-aws
Alpine base image for all InfraBlocks images being used on AWS. Includes AWS CLI.
https://github.com/infrablocks/docker-base-alpine-aws
alpine aws docker docker-image image infrablocks
Last synced: 4 months ago
JSON representation
Alpine base image for all InfraBlocks images being used on AWS. Includes AWS CLI.
- Host: GitHub
- URL: https://github.com/infrablocks/docker-base-alpine-aws
- Owner: infrablocks
- License: mit
- Created: 2018-08-27T20:42:55.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2025-05-27T22:44:36.000Z (5 months ago)
- Last Synced: 2025-05-27T23:34:41.774Z (5 months ago)
- Topics: alpine, aws, docker, docker-image, image, infrablocks
- Language: Ruby
- Size: 388 KB
- Stars: 3
- Watchers: 12
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Docker Base Image - Alpine AWS
## Development
### Managing CircleCI keys
To encrypt a GPG key for use by CircleCI:
```bash
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k ""
```
To check decryption is working correctly:
```bash
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k ""
```