Skip to content

Commit

Permalink
Update dockerfiles to point to new alpine repo for 3.11 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed Jan 10, 2020
1 parent ca507fb commit 892fb20
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -9,7 +9,7 @@ export README_DEPS ?= .github/auto-label.yml docs/targets.md

export DIST_CMD ?= cp -a
export DIST_PATH ?= /dist
export ALPINE_VERSION ?= 3.10
export ALPINE_VERSION ?= 3.11

SHELL := /bin/bash

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -117,9 +117,9 @@ Add the following to your `Dockerfile` near the top.
```
# Install the cloudposse alpine repository
ADD https://apk.cloudposse.com/ops@cloudposse.com.rsa.pub /etc/apk/keys/
RUN echo "@cloudposse https://apk.cloudposse.com/3.10/vendor" >> /etc/apk/repositories
RUN echo "@cloudposse https://apk.cloudposse.com/3.11/vendor" >> /etc/apk/repositories
```
__NOTE__: we support alpine `3.7`, `3.8`, `3.9`, and `3.10` packages at this time
__NOTE__: we support alpine `3.7`, `3.8`, `3.9`, `3.10`, and `3.11` packages at this time

### Installing Alpine Packages

Expand Down
4 changes: 2 additions & 2 deletions README.yaml
Expand Up @@ -75,9 +75,9 @@ usage: |-
```
# Install the cloudposse alpine repository
ADD https://apk.cloudposse.com/ops@cloudposse.com.rsa.pub /etc/apk/keys/
RUN echo "@cloudposse https://apk.cloudposse.com/3.10/vendor" >> /etc/apk/repositories
RUN echo "@cloudposse https://apk.cloudposse.com/3.11/vendor" >> /etc/apk/repositories
```
__NOTE__: we support alpine `3.7`, `3.8`, `3.9`, and `3.10` packages at this time
__NOTE__: we support alpine `3.7`, `3.8`, `3.9`, `3.10`, and `3.11` packages at this time
### Installing Alpine Packages
Expand Down
2 changes: 1 addition & 1 deletion apk/Dockerfile-3.11
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.11

# Install the cloudposse alpine repository
ADD https://apk.cloudposse.com/ops@cloudposse.com.rsa.pub /etc/apk/keys/
RUN echo "https://apk.cloudposse.com/3.10/vendor" >> /etc/apk/repositories
RUN echo "https://apk.cloudposse.com/3.11/vendor" >> /etc/apk/repositories
RUN echo "https://alpine.global.ssl.fastly.net/alpine/edge/testing" >> /etc/apk/repositories
RUN echo "https://alpine.global.ssl.fastly.net/alpine/edge/community" >> /etc/apk/repositories

Expand Down

0 comments on commit 892fb20

Please sign in to comment.