-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add VERSION argument to python packages (#79)
* Add VERSION argument to python packages First step in fixing #33 * Group output by image tag * Add image tag list
- Loading branch information
Showing
18 changed files
with
124 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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
versions: | ||
- 2.8.0 | ||
- 2.8.1 | ||
- 2.8.10 | ||
- 2.8.2 | ||
- 2.8.3 | ||
- 2.8.4 | ||
- 2.8.5 | ||
- 2.8.6 | ||
- 2.8.7 | ||
- 2.8.8 | ||
- 2.8.9 | ||
- 2.9.0 | ||
- 2.9.1 | ||
- 2.9.2 | ||
- 2.9.3 | ||
- 2.9.4 | ||
- 2.9.5 | ||
- 2.9.6 |
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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
versions: | ||
- 1.8.0 | ||
- 1.8.1 | ||
- 1.8.10 | ||
- 1.8.11 | ||
- 1.8.12 | ||
- 1.8.13 | ||
- 1.8.2 | ||
- 1.8.3 | ||
- 1.8.4 | ||
- 1.8.5 | ||
- 1.8.6 | ||
- 1.8.7 | ||
- 1.8.8 | ||
- 1.8.9 | ||
- 1.9.0 | ||
- 1.9.1 | ||
- 1.9.10 | ||
- 1.9.11 | ||
- 1.9.12 | ||
- 1.9.13 | ||
- 1.9.14 | ||
- 1.9.15 | ||
- 1.9.16 | ||
- 1.9.17 | ||
- 1.9.18 | ||
- 1.9.19 | ||
- 1.9.2 | ||
- 1.9.20 | ||
- 1.9.21 | ||
- 1.9.3 | ||
- 1.9.4 | ||
- 1.9.5 | ||
- 1.9.6 | ||
- 1.9.7 | ||
- 1.9.8 | ||
- 1.9.9 |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
versions: | ||
- 0.7.0 | ||
- 0.8.0 |
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,5 @@ | ||
FROM python:3-alpine | ||
RUN pip install httpie | ||
ARG VERSION=2.0.0 | ||
RUN pip install httpie${VERSION+==$VERSION} | ||
RUN mkdir /.httpie && echo "{}" > /.httpie/config.json | ||
ENTRYPOINT ["http"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
versions: | ||
- 1.0.0 | ||
- 1.0.2 | ||
- 1.0.3 | ||
- 2.0.0 |
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,3 +1,7 @@ | ||
FROM alpine | ||
RUN apk add --no-cache jq | ||
FROM alpine as build | ||
ARG VERSION=1.6 | ||
RUN wget -O /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-${VERSION}/jq-linux64 && \ | ||
chmod +x /usr/local/bin/jq | ||
FROM scratch | ||
COPY --from=build /usr/local/bin/jq /usr/local/bin/jq | ||
ENTRYPOINT ["jq"] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
versions: | ||
- 1.5 | ||
- 1.6 |
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,3 +1,4 @@ | ||
FROM python:3-alpine | ||
RUN pip install proselint | ||
ARG VERSION=0.9.0 | ||
RUN pip install proselint${VERSION+==$VERSION} | ||
ENTRYPOINT ["proselint"] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
versions: | ||
- 0.8.0 | ||
- 0.9.0 |
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,3 +1,4 @@ | ||
FROM python:3-alpine | ||
RUN pip install pygments | ||
ARG VERSION=2.6.1 | ||
RUN pip install pygments${VERSION+==$VERSION} | ||
ENTRYPOINT ["pygmentize"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
versions: | ||
- 2.5.1 | ||
- 2.5.2 | ||
- 2.6.0 | ||
- 2.6.1 |
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,5 @@ | ||
FROM python:3-alpine | ||
RUN apk add --no-cache ffmpeg | ||
RUN pip install youtube-dl | ||
ARG VERSION=2020.3.8 | ||
RUN pip install --no-cache-dir youtube-dl${VERSION+==$VERSION} | ||
ENTRYPOINT ["youtube-dl"] |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
versions: | ||
- 2020.1.1 | ||
- 2020.1.15 | ||
- 2020.1.24 | ||
- 2020.2.16 | ||
- 2020.3.1 | ||
- 2020.3.6 | ||
- 2020.3.8 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
versions: | ||
- 2.8.0 | ||
- 2.8.1 | ||
- 2.9.2 |