From c8785daa108123970c3fe78d5a47aaf796842f1f Mon Sep 17 00:00:00 2001 From: John Rofrano Date: Fri, 30 Jun 2023 13:11:00 -0400 Subject: [PATCH] Upgraded to summer 2023 base image --- Dockerfile | 4 ++-- Makefile | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 324ba68..9e93953 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Docker image for Python Behavior Driven Development Pipeline -FROM rofrano/nyu-devops-base:sp23 +FROM rofrano/nyu-devops-base:su23 -# This build image needs to be root +# This build image needs to be root to work in IBM Cloud CI/CD USER root # Install Selenium, Chrome and Firefox diff --git a/Makefile b/Makefile index d61b4e7..2d1387b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ PLATFORM ?= "linux/amd64,linux/arm64" DOCKER_BUILDKIT = 1 -all: init build +all: help ## help: Lists help on the commands .PHONY: help diff --git a/README.md b/README.md index d8d86ad..72e3625 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This Docker image is for Python Behavior Driven Development with Selenium, Chrom ## Description -This Docker image is based on the Python 3.9-Slim Debian 11 and contains Python 3 with Selenium and both the ChromeDriver and GeckoDriver to perform BDD testing with Behave with either headless Chrome or Firefox. +This Docker image is based on the Python 3.11-Slim Debian 11 and contains Python 3 with Selenium and both the ChromeDriver and GeckoDriver to perform BDD testing with Behave with either headless Chrome or Firefox. ## Usage