Skip to content

Commit 0a1560e

Browse files
committed
Minor: image repository for python314
1 parent 465657a commit 0a1560e

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

Makefile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,19 @@ serverledge-cli:
1414
executor:
1515
CGO_ENABLED=0 $(GO) build -o $(BIN)/$@ cmd/$@/executor.go
1616

17-
DOCKERHUB_USER=fmuschera
18-
images: image-python310 image-nodejs17ng image-base
19-
image-python310:
20-
docker build -t $(DOCKERHUB_USER)/serverledge-python310 -f images/python310/Dockerfile .
17+
DOCKERHUB_USER=grussorusso
18+
images: image-python314 image-nodejs17ng image-base
19+
image-python314:
20+
docker build -t $(DOCKERHUB_USER)/serverledge-python314 -f images/python314/Dockerfile .
2121
image-base:
2222
docker build -t $(DOCKERHUB_USER)/serverledge-base -f images/base-alpine/Dockerfile .
2323
image-nodejs17ng:
2424
docker build -t $(DOCKERHUB_USER)/serverledge-nodejs17ng -f images/nodejs17ng/Dockerfile .
25+
image-nodejs17ng:
26+
docker build -t $(DOCKERHUB_USER)/serverledge-nodejs17ng -f images/nodejs17ng/Dockerfile .
2527

2628
push-images:
27-
docker push $(DOCKERHUB_USER)/serverledge-python310
29+
docker push $(DOCKERHUB_USER)/serverledge-python314
2830
docker push $(DOCKERHUB_USER)/serverledge-base
2931
docker push $(DOCKERHUB_USER)/serverledge-nodejs17ng
3032

internal/container/runtimes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const ARM = "arm64"
1515
var refreshedImages = map[string]bool{}
1616

1717
var RuntimeToInfo = map[string]RuntimeInfo{
18-
"python314": {"fmuschera/serverledge-python314", []string{"python", "/entrypoint.py"}, true, []string{X86, ARM}},
19-
"nodejs17ng": {"fmuschera/serverledge-nodejs17ng", []string{}, false, []string{X86, ARM}},
18+
"python314": {"grussorusso/serverledge-python314", []string{"python", "/entrypoint.py"}, true, []string{X86, ARM}},
19+
"nodejs17ng": {"grussorusso/serverledge-nodejs17ng", []string{}, false, []string{X86, ARM}},
2020
"java21": {"fmuschera/serverledge-java21", []string{}, false, []string{X86, ARM}},
2121
"go125": {"fmuschera/serverledge-go125", []string{"/entrypoint.sh"}, true, []string{X86, ARM}},
2222
"python-numpy": {"fmuschera/serverledge-python-numpy", []string{"python", "/entrypoint.py"}, true, []string{X86, ARM}},

0 commit comments

Comments
 (0)