diff --git a/solution/python-mysql/Dockerfile_python b/solution/python-mysql/Dockerfile_python new file mode 100644 index 000000000..447b9c092 --- /dev/null +++ b/solution/python-mysql/Dockerfile_python @@ -0,0 +1,8 @@ +# NOTE name need to be Dockerfile +FROM python:3.9 + +RUN pip install mysql-connector-python + +WORKDIR /usr/app/src + +COPY hello_world.py ./