17 Commits

Author SHA1 Message Date
474ed43067 Update youtube-dl from 2021.06.06 to 2021.12.17
Release notes https://github.com/ytdl-org/youtube-dl/releases/tag/2021.12.17
2021-12-17 16:12:50 +00:00
30a347dec9 Merge pull request #97 from wader/bump-golang-1.17.5
Update golang from 1.17.4 to 1.17.5
2021-12-10 17:33:36 +01:00
3389e34b7f Update golang from 1.17.4 to 1.17.5
Release notes https://golang.org/doc/devel/release.html
2021-12-10 16:13:10 +00:00
6e39b2fb4b Merge pull request #96 from wader/bump-golang-1.17.4
Update golang from 1.17.3 to 1.17.4
2021-12-04 17:22:47 +01:00
37811576e7 Update golang from 1.17.3 to 1.17.4
Release notes https://golang.org/doc/devel/release.html
2021-12-04 16:12:07 +00:00
87011aa92b Merge pull request #95 from wader/bump-golang-1.17.3
Update golang from 1.17.2 to 1.17.3
2021-11-05 17:31:41 +01:00
233195dd0d Update golang from 1.17.2 to 1.17.3
Release notes https://golang.org/doc/devel/release.html
2021-11-05 16:16:28 +00:00
6e31f063cf Merge pull request #94 from wader/bump-golang-1.17.2
Update golang from 1.17.1 to 1.17.2
2021-10-13 22:22:59 +02:00
41933f0a2b Update golang from 1.17.1 to 1.17.2
Release notes https://golang.org/doc/devel/release.html
2021-10-08 16:11:47 +00:00
d0e3a70ce5 Merge pull request #93 from wader/bump-golang-1.17.1
Update golang from 1.17.0 to 1.17.1
2021-09-10 18:29:37 +02:00
012408bb52 Update golang from 1.17.0 to 1.17.1
Release notes https://golang.org/doc/devel/release.html
2021-09-10 16:11:35 +00:00
c4f0e4cc71 Merge pull request #92 from wader/bump-golang-1.17.0
Update golang from 1.16.7 to 1.17.0
2021-08-17 23:02:18 +02:00
0c48cc0631 Update golang from 1.16.7 to 1.17.0
Release notes https://golang.org/doc/devel/release.html

golang 1.17 base image now uses bullseye
Add python-is-python3 to make python3 default
2021-08-17 22:50:59 +02:00
b5714b7c0b Merge pull request #91 from wader/bump-golang-1.16.7
Update golang from 1.16.6 to 1.16.7
2021-08-06 09:18:54 -07:00
abc93ced75 Update golang from 1.16.6 to 1.16.7
Release notes https://golang.org/doc/devel/release.html
2021-08-06 16:14:15 +00:00
e085ca9cef Merge pull request #90 from wader/bump-golang-1.16.6
Update golang from 1.16.5 to 1.16.6
2021-07-13 11:15:57 -07:00
d159914696 Update golang from 1.16.5 to 1.16.6
Release notes https://golang.org/doc/devel/release.html
2021-07-13 16:14:35 +00:00

View File

@ -1,17 +1,22 @@
# bump: golang /GOLANG_VERSION=([\d.]+)/ docker:golang|^1 # bump: golang /GOLANG_VERSION=([\d.]+)/ docker:golang|^1
# bump: golang link "Release notes" https://golang.org/doc/devel/release.html # bump: golang link "Release notes" https://golang.org/doc/devel/release.html
ARG GOLANG_VERSION=1.16.5 ARG GOLANG_VERSION=1.17.5
# bump: youtube-dl /YDL_VERSION=([\d.]+)/ https://github.com/ytdl-org/youtube-dl.git|/^\d/|sort # bump: youtube-dl /YDL_VERSION=([\d.]+)/ https://github.com/ytdl-org/youtube-dl.git|/^\d/|sort
# bump: youtube-dl link "Release notes" https://github.com/ytdl-org/youtube-dl/releases/tag/$LATEST # bump: youtube-dl link "Release notes" https://github.com/ytdl-org/youtube-dl/releases/tag/$LATEST
ARG YDL_VERSION=2021.06.06 ARG YDL_VERSION=2021.12.17
FROM golang:$GOLANG_VERSION FROM golang:$GOLANG_VERSION AS base
ARG YDL_VERSION ARG YDL_VERSION
RUN \ RUN \
apt-get update -q && \
apt-get install -y -q python-is-python3 && \
curl -L -o /usr/local/bin/youtube-dl https://yt-dl.org/downloads/$YDL_VERSION/youtube-dl && \ curl -L -o /usr/local/bin/youtube-dl https://yt-dl.org/downloads/$YDL_VERSION/youtube-dl && \
chmod a+x /usr/local/bin/youtube-dl chmod a+x /usr/local/bin/youtube-dl
FROM base AS dev
FROM base
WORKDIR /src WORKDIR /src
COPY go.* *.go ./ COPY go.* *.go ./
COPY cmd cmd COPY cmd cmd