File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM debian:stretch
1
+ FROM debian:bookworm
2
2
COPY . /tmp/jd4
3
3
RUN apt-get update && \
4
4
apt-get install -y \
@@ -8,11 +8,11 @@ RUN apt-get update && \
8
8
python3-dev \
9
9
g++ \
10
10
fp-compiler \
11
- openjdk-8 -jdk-headless \
12
- python \
13
- php7.0 -cli \
11
+ openjdk-17 -jdk-headless \
12
+ python-is-python3 \
13
+ php8.2 -cli \
14
14
rustc \
15
- haskell-platform \
15
+ ghc \
16
16
libjavascriptcoregtk-4.0-bin \
17
17
golang \
18
18
ruby \
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def test_php(self):
80
80
""" )
81
81
82
82
def test_py (self ):
83
- self .do_lang ('py' , b'print sum(map(int, raw_input ().split()))' )
83
+ self .do_lang ('py' , b'print( sum(map(int, input ().split() )))' )
84
84
85
85
def test_py3 (self ):
86
86
self .do_lang ('py3' , b'print(sum(map(int, input().split())))' )
You can’t perform that action at this time.
0 commit comments