
Add simple dockerfile to be used as a development environment. Story: 2010846 Task: 48462 Change-Id: I20554e3fa98ef407c0f7c3f657d9e57dc301b02a Signed-off-by: Charles Short <charles.short@windriver.com>
16 lines
303 B
Docker
16 lines
303 B
Docker
FROM debian:bullseye
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
python3 \
|
|
python3-click \
|
|
python3-pip \
|
|
python3-pbr \
|
|
python3-rich
|
|
|
|
ADD assets/15update-stamp /etc/apt/apt.conf.d/15-update-stamp
|
|
ADD asserts/pip.conf /etc/pip.conf
|
|
|
|
RUN mkdir -p /usr/src/apt-ostree
|
|
WORKDIR /usr/src/apt-ostree
|