-
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade go 1.17.9 -> 1.19.0, alpine 3.15 -> 3.16 (#328)
- Loading branch information
Showing
2 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.17.9-alpine3.15 | ||
FROM golang:1.19.0-alpine3.16 | ||
LABEL maintainer="Cloud Posse <[email protected]>" | ||
|
||
LABEL "com.github.actions.name"="Build Harness" | ||
|
@@ -26,18 +26,20 @@ RUN apk --update --no-cache add \ | |
py3-cffi && \ | ||
python3 -m pip install --upgrade pip setuptools wheel && \ | ||
pip3 install --no-cache-dir \ | ||
cryptography==37.0.4 \ | ||
PyYAML==5.4.1 \ | ||
awscli==1.22.56 \ | ||
awscli==1.25.43 \ | ||
boto==2.49.0 \ | ||
boto3==1.21.1 \ | ||
boto3==1.24.43 \ | ||
iteration-utilities==0.11.0 \ | ||
PyGithub==1.55 && \ | ||
git config --global advice.detachedHead false | ||
|
||
## Workaround https://github.com/pypa/pip/issues/5247 | ||
RUN pip3 install --upgrade --force-reinstall pip==9.0.3 && \ | ||
pip3 install --no-cache-dir --disable-pip-version-check pre-commit && \ | ||
pip3 install --upgrade pip | ||
### Workaround https://github.com/pypa/pip/issues/5247 | ||
# Should no longer be needed, but leaving it in case we need to revert | ||
#RUN pip3 install --upgrade --force-reinstall pip==9.0.3 && \ | ||
# pip3 install --no-cache-dir --disable-pip-version-check pre-commit && \ | ||
# pip3 install --upgrade pip | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
RUN curl -fsSL --retry 3 https://apk.cloudposse.com/install.sh | bash | ||
|
@@ -86,3 +88,4 @@ RUN make -s template/deps readme/deps | |
RUN make -s go/deps-build go/deps-dev | ||
|
||
ENTRYPOINT ["/usr/bin/make"] | ||
#ENTRYPOINT ["/bin/sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters