Skip to content

Commit 414c384

Browse files
authored
[Feature:Autograding] add docker image for Python 3.10 (#61)
### What is the new behavior? add docker image for python 3.10 --------- Co-authored-by: Barb Cutler <Barb Cutler>
1 parent f24e7a4 commit 414c384

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

dockerfiles/clang/14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:22.04
22

3-
# installing requirements to get and extract prebuilt binaries
3+
# installing clang & clang++
44
RUN apt-get update
55
RUN apt-get install -y clang-14 lld-14
66
RUN rm -rf /var/lib/apt/lists/*

dockerfiles/python/3.10/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM ubuntu:22.04
2+
3+
# installing python
4+
RUN apt-get update
5+
RUN apt-get install -y python3.10
6+
RUN rm -rf /var/lib/apt/lists/*
7+
8+
# symlinks
9+
RUN ln -s /usr/bin/python3.10 /usr/bin/python3

dockerfiles/python/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"pushLatest": true,
3-
"latestTag": "3.7"
3+
"latestTag": "3.10"
44
}

0 commit comments

Comments
 (0)