-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (25 loc) · 879 Bytes
/
Copy pathDockerfile
File metadata and controls
29 lines (25 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
# Returns the latest available package versions
RUN apt-get update && apt-cache madison \
python3-oslo.log \
python3-openstacksdk \
python3-openstackclient \
python3-barbicanclient \
python3-glanceclient \
python3-neutronclient \
python3-novaclient \
python3-octaviaclient \
python3-swiftclient
# Install packages
RUN apt-get update && apt-get install -y --no-install-recommends \
python3-oslo.log=4.6.1-0ubuntu1 \
python3-openstacksdk=0.61.0-0ubuntu1 \
python3-openstackclient=5.8.0-0ubuntu1 \
python3-barbicanclient=5.2.0-0ubuntu1 \
python3-glanceclient=1:3.6.0-0ubuntu1 \
python3-neutronclient=1:7.8.0-0ubuntu1 \
python3-novaclient=2:17.6.0-0ubuntu1 \
python3-octaviaclient=2.5.0-0ubuntu1 \
python3-swiftclient=1:3.13.1-0ubuntu1
CMD ["/bin/bash"]