Skip to content

Commit e23833b

Browse files
committed
Release version 1.20250412.2
1 parent 6dd1c4f commit e23833b

File tree

3 files changed

+5
-60
lines changed

3 files changed

+5
-60
lines changed

.devcontainer/devcontainer-base.json

Lines changed: 0 additions & 52 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
{
44
"name": "Python 3",
55

6-
// This is the default
7-
// "image": "mcr.microsoft.com/devcontainers/universal:2",
8-
//"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bookworm",
9-
10-
// Using the prebuild
11-
// "image": "ghcr.io/league-infrastructure/jtlpython:latest",
126

137
"build": {
148
"dockerfile": "Dockerfile",
@@ -26,7 +20,10 @@
2620
"forwardPorts": [6080, 5901],
2721

2822
// Use 'postCreateCommand' to run commands after the container is created.
29-
"postCreateCommand": "pip3 install --user -r requirements.txt",
23+
// However, this does seem to get injected into the built container
24+
// so you may want to exclude it, and define it in the devcontainer.json for
25+
// the devcontainer you are using.
26+
//"postCreateCommand": "pip3 install --user -r requirements.txt",
3027

3128
"customizations": {
3229
"codespaces": {

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build push ver install publish check-docker
22

3-
VERSION := "1.20250412.1"
3+
VERSION := "1.20250412.2"
44
IMAGE_NAME := jtlpython:$(VERSION)
55
IMAGE_FULL_NAME := ghcr.io/league-examples/$(IMAGE_NAME)
66

0 commit comments

Comments
 (0)