Skip to content

Commit

Permalink
remove docker-runc
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-schwind committed Oct 16, 2023
1 parent 3fa47f7 commit 4a37c0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions core/controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,8 @@ RUN apt update &&\
# Install docker client
RUN curl -sSL -o docker-${DOCKER_VERSION}.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
tar --strip-components 1 -xvzf docker-${DOCKER_VERSION}.tgz -C /usr/bin docker/docker && \
tar --strip-components 1 -xvzf docker-${DOCKER_VERSION}.tgz -C /usr/bin docker/docker-runc && \
rm -f docker-${DOCKER_VERSION}.tgz && \
chmod +x /usr/bin/docker && \
chmod +x /usr/bin/docker-runc
chmod +x /usr/bin/docker
##################################################################################################

# Install swagger-ui
Expand Down
4 changes: 1 addition & 3 deletions core/invoker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ RUN apt update &&\
# Install docker client
RUN curl -sSL -o docker-${DOCKER_VERSION}.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
tar --strip-components 1 -xvzf docker-${DOCKER_VERSION}.tgz -C /usr/bin docker/docker && \
tar --strip-components 1 -xvzf docker-${DOCKER_VERSION}.tgz -C /usr/bin docker/docker-runc && \
rm -f docker-${DOCKER_VERSION}.tgz && \
chmod +x /usr/bin/docker && \
chmod +x /usr/bin/docker-runc
chmod +x /usr/bin/docker

ADD build/distributions/invoker.tar ./

Expand Down
2 changes: 1 addition & 1 deletion core/standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
FROM scala
ARG OPENWHISK_JAR
ENV DOCKER_VERSION=18.06.3-ce
ENV DOCKER_VERSION=24.0.6
ENV WSK_VERSION=1.0.0
ADD init /
ADD stop waitready /bin/
Expand Down

0 comments on commit 4a37c0b

Please sign in to comment.