Merge pull request #1002 from GabyCT/topic/removeupdate

tests: Remove performing updates in Fedora dockerfile
This commit is contained in:
James O. D. Hunt
2020-04-07 15:03:50 +01:00
committed by GitHub
2 changed files with 0 additions and 3 deletions

View File

@@ -7,8 +7,6 @@ FROM @OS_DISTRIBUTION@
ENV TESTS_REPO="github.com/kata-containers/tests"
RUN @UPDATE@
RUN @DEPENDENCIES@
ENV PATH=$PATH:/usr/local/go/bin

View File

@@ -32,7 +32,6 @@ generate_dockerfile() {
echo "Building dockerfile for ${OS_DISTRIBUTION}"
sed \
-e "s|@OS_DISTRIBUTION@|${OS_DISTRIBUTION}|g" \
-e "s|@UPDATE@|${UPDATE}|g" \
-e "s|@DEPENDENCIES@|${DEPENDENCIES}|g" \
"${DOCKERFILE_PATH}/FedoraDockerfile.in" > "${DOCKERFILE_PATH}"/Dockerfile
}