From 9245a27c5763b897f448b29408a28cf258ea1357 Mon Sep 17 00:00:00 2001 From: "William T. Wissemann" Date: Thu, 16 Jun 2022 16:11:29 -0400 Subject: [PATCH] Create Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..e35fa6c8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +## build image containing the required foundation artifacts +FROM registry.access.redhat.com/ubi8/ubi:latest +USER root +WORKDIR /foundation +ENV PYTHON ${PYTHON_VERSION_UBI} + +COPY requirements.txt /tmp +RUN rm -rf /tmp/requirements.txt + +WORKDIR /app +ADD ./run.py /app +ADD ./sqli /app/sqli +ADD ./config /app/config