-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add latest lang versions (Python 3.12, Node.js 20, Go 1.21)
- Loading branch information
1 parent
4658bb3
commit c6b8cf0
Showing
12 changed files
with
81 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM python:3.12-alpine | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
# Install all dependencies | ||
RUN ./prepare | ||
RUN ./prepare-alpine-init && ./prepare-alpine-ruby && ./prepare-alpine-uninit | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ python --version | ||
# Python 3.12.0 | ||
|
||
RUN ./validate-python '^Python 3\.12\.' | ||
RUN ./validate-construct '^2\.10\.' |
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 @@ | ||
../../generic-build |
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 @@ | ||
../../generic-run-it |
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,27 @@ | ||
FROM golang:1.21-alpine | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
RUN ./prepare-alpine-init | ||
|
||
# Ruby is required for test infrastructure (aggregators, test result converters) to work | ||
RUN ./prepare-alpine-ruby | ||
|
||
# Required to download go-junit-report release in ./prepare-go-deps | ||
RUN apk add curl | ||
|
||
# Required for `go get` to work | ||
RUN apk add git | ||
|
||
RUN ./prepare-alpine-uninit | ||
|
||
# Install rest of go-specific dependencies | ||
RUN ./prepare | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ go version | ||
# go version go1.21.3 linux/amd64 | ||
|
||
RUN ./validate '^go version go1\.21\.' |
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 @@ | ||
../../generic-build |
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 @@ | ||
../../generic-run-it |
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,15 @@ | ||
FROM node:20-alpine | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
# Install all dependencies | ||
RUN ./prepare | ||
RUN ./prepare-alpine-init && ./prepare-alpine-ruby && ./prepare-alpine-uninit | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ node --version | ||
# v20.8.0 | ||
|
||
RUN ./validate '^v20\.' |
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 @@ | ||
../../generic-build |
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 @@ | ||
../../generic-run-it |
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,15 @@ | ||
FROM python:3.12-alpine | ||
|
||
# Copy files common for all images | ||
COPY 4img/* ./ | ||
|
||
# Install all dependencies | ||
RUN ./prepare | ||
RUN ./prepare-alpine-init && ./prepare-alpine-ruby && ./prepare-alpine-uninit | ||
|
||
# Validate that we've got correct version, e.g. something like this: | ||
# | ||
# $ python --version | ||
# Python 3.12.0 | ||
|
||
RUN ./validate '^Python 3\.12\.' |
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 @@ | ||
../../generic-build |
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 @@ | ||
../../generic-run-it |