Skip to content

Commit aa175a7

Browse files
authored
Merge pull request #1 from odtp-org/fix-ubuntu-python-version
fixed ubuntu and python versions
2 parents 9f96f50 + 22286a8 commit aa175a7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM ubuntu:latest
1+
FROM ubuntu:22.04
22

33
RUN apt update
4-
RUN apt install python3 python3-pip -y
4+
RUN apt install python3.10 python3-pip -y
55

66
##################################################
77
# Ubuntu setup

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the component that will download and arrange files to make it compatible
66
```
77
odtp new odtp-component-entry \
88
--name odtp-eqasim-dataloader \
9-
--component-version 0.3.1 \
9+
--component-version 0.3.2 \
1010
--repository https://github.com/odtp-org/odtp-eqasim-dataloader
1111
```
1212

@@ -20,9 +20,14 @@ Therefore, the only ENV variable available is:
2020

2121
## Changelog
2222

23+
- v0.3.2
24+
- Ubuntu fixed at 22.04
25+
- Python fixed at 3.10
26+
2327
- v0.3.1
2428
- Updated `odtp-component-client`
2529
- Added quiet to unzip
30+
2631
- v0.3.0 Updated `odtp.yml`
2732

2833
## Development

0 commit comments

Comments
 (0)