Skip to content

Commit

Permalink
Merge pull request #5 from williamwissemann/master
Browse files Browse the repository at this point in the history
Create Dockerfile
  • Loading branch information
williamwissemann authored Jan 12, 2023
2 parents b11d041 + 9245a27 commit 93bae5d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 93bae5d

Please sign in to comment.