Images of ptp-notification containers for Debian
This change reorganizes the source directories of the ptp-notification's
containers: locationservice; notificationservice; notificationclient, to
be reused by both CentOS and Debian Dockerfiles to build the images
having the corresponding OS-specific base, together with the new files
used to build images for Debian.
Tests:
PASS: Build images of the 3 containers for Debian
PASS: Upload and apply changed ptp-notification application to pull
Debian images from private repository (since final tag is
not possible yet) in a Debian AIO-SX environment
Regression:
PASS: Build images of the 3 containers for CentOS
Story: 2009831
Task: 45658
Signed-off-by: Douglas Henrique Koerich <douglashenrique.koerich@windriver.com>
Change-Id: I4aa9650dbebe5ba68cd4d104ee0995e79681cfa4
This commit is contained in:
3
debian_stable_docker_images.inc
Normal file
3
debian_stable_docker_images.inc
Normal file
@@ -0,0 +1,3 @@
|
||||
notificationservice-base
|
||||
locationservice-base
|
||||
notificationclient-base
|
||||
@@ -3,7 +3,7 @@ FROM ${BASE}
|
||||
|
||||
ARG STX_REPO_FILE=/etc/yum.repos.d/stx.repo
|
||||
|
||||
ENV KUBE_LATEST_VERSION="v1.18.3"
|
||||
ENV KUBE_LATEST_VERSION="v1.23.1"
|
||||
|
||||
RUN set -ex ;\
|
||||
yum install --disablerepo=* \
|
||||
@@ -1,2 +1,4 @@
|
||||
BUILDER=docker
|
||||
LABEL=locationservice-base
|
||||
DOCKER_CONTEXT=../docker
|
||||
DOCKER_FILE=./Dockerfile
|
||||
23
locationservice-base/debian/Dockerfile
Normal file
23
locationservice-base/debian/Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
ARG BASE
|
||||
FROM ${BASE}
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ENV KUBE_LATEST_VERSION="v1.23.1"
|
||||
|
||||
RUN apt-get -y update \
|
||||
&& apt-get -y install \
|
||||
gcc \
|
||||
python3-dev \
|
||||
python3 \
|
||||
&& apt-get -y clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN pip3 install --user pecan \
|
||||
&& pip3 install oslo-config \
|
||||
&& pip3 install oslo-messaging \
|
||||
&& pip3 install WSME
|
||||
|
||||
WORKDIR /opt/
|
||||
COPY ./locationservice /opt/locationservice
|
||||
RUN cd /opt/locationservice && python3 setup.py develop
|
||||
|
||||
CMD ["bash"]
|
||||
@@ -0,0 +1,4 @@
|
||||
BUILDER=docker
|
||||
LABEL=locationservice-base
|
||||
DOCKER_CONTEXT=../docker
|
||||
DOCKER_FILE=./Dockerfile
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
@@ -3,7 +3,7 @@ FROM ${BASE}
|
||||
|
||||
ARG STX_REPO_FILE=/etc/yum.repos.d/stx.repo
|
||||
|
||||
ENV KUBE_LATEST_VERSION="v1.18.3"
|
||||
ENV KUBE_LATEST_VERSION="v1.23.1"
|
||||
|
||||
RUN set -ex ;\
|
||||
yum install --disablerepo=* \
|
||||
@@ -1,2 +1,4 @@
|
||||
BUILDER=docker
|
||||
LABEL=notificationclient-base
|
||||
DOCKER_CONTEXT=../docker
|
||||
DOCKER_FILE=./Dockerfile
|
||||
24
notificationclient-base/debian/Dockerfile
Normal file
24
notificationclient-base/debian/Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
ARG BASE
|
||||
FROM ${BASE}
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
ENV KUBE_LATEST_VERSION="v1.23.1"
|
||||
|
||||
RUN apt-get -y update \
|
||||
&& apt-get -y install \
|
||||
gcc \
|
||||
python3-dev \
|
||||
python3 \
|
||||
&& apt-get -y clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN pip3 install --user pecan \
|
||||
&& pip3 install oslo-config \
|
||||
&& pip3 install oslo-messaging \
|
||||
&& pip3 install WSME \
|
||||
&& pip3 install sqlalchemy
|
||||
|
||||
WORKDIR /opt/
|
||||
COPY ./notificationclient-sidecar /opt/notificationclient
|
||||
RUN cd /opt/notificationclient && python3 setup.py develop
|
||||
|
||||
CMD ["bash"]
|
||||
@@ -0,0 +1,4 @@
|
||||
BUILDER=docker
|
||||
LABEL=notificationclient-base
|
||||
DOCKER_CONTEXT=../docker
|
||||
DOCKER_FILE=./Dockerfile
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user