Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@ DOCKER_BUILD_ARGS = --network=host
DOCKER_BUILD_ARGS += --build-arg http_proxy=${DOCKER_BUILD_PROXY}
DOCKER_BUILD_ARGS += --build-arg https_proxy=${DOCKER_BUILD_PROXY}
DOCKER_BUILD_ARGS += --build-arg GIT_COMMIT="$(shell git log -1 --oneline)"
ifeq (${NO_CACHE},true)
DOCKER_BUILD_ARGS += --no-cache
endif
6 changes: 3 additions & 3 deletions vpp-manager/images/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ FROM ubuntu:22.04

LABEL maintainer="nskrzypc@cisco.com"

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

RUN apt-get update \
&& apt-get install -y openssl libapr1 libnuma1 \
libmbedcrypto7 libmbedtls14 libmbedx509-1 libsubunit0 \
Expand All @@ -13,6 +10,9 @@ RUN apt-get update \
gdb \
&& rm -rf /var/lib/apt/lists/*

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

# set work directory
WORKDIR /root/

Expand Down
6 changes: 3 additions & 3 deletions vpp-manager/images/ubuntu/Dockerfile.debug
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ FROM ubuntu:22.04

LABEL maintainer="nskrzypc@cisco.com"

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

RUN apt-get update \
&& apt-get install -y openssl libapr1 libnuma1 \
libmbedcrypto7 libmbedtls14 libmbedx509-1 libsubunit0 \
Expand All @@ -13,6 +10,9 @@ RUN apt-get update \
gdb \
&& rm -rf /var/lib/apt/lists/*

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

# set work directory
WORKDIR /root/

Expand Down
6 changes: 3 additions & 3 deletions vpp-manager/images/vclsidecar/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM ubuntu:22.04

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

RUN apt update && apt install -y \
libunwind8 \
libssh-4 \
libcurl3-gnutls \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

ADD artifacts/release/libvppcom* /usr/local/lib/
ADD artifacts/release/libvppinfra* /usr/local/lib/
ADD artifacts/release/libvlibmemoryclient* /usr/local/lib/
Expand Down
6 changes: 3 additions & 3 deletions vpp-manager/images/vclsidecar/Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM ubuntu:22.04

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

RUN apt update && apt install -y \
libunwind8 \
libssh-4 \
libcurl3-gnutls \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

ARG GIT_COMMIT=unknown
LABEL git-commit=$GIT_COMMIT

ADD artifacts/debug/libvppcom* /usr/local/lib/
ADD artifacts/debug/libvppinfra* /usr/local/lib/
ADD artifacts/debug/libvlibmemoryclient* /usr/local/lib/
Expand Down
Loading