Forward to correct recipient #121

Open
edenhaus wants to merge 10 commits from edenhaus/wip-proxyRequests into wip-proxyRequests
Showing only changes of commit 5583b4a99b - Show all commits

View file

@ -22,11 +22,15 @@ RUN apk add build-base
FROM base
COPY . /bumper
WORKDIR /bumper
COPY requirements.txt /requirements.txt
# install required python packages
RUN pip3 install -r requirements.txt
WORKDIR /bumper
# Copy only required folders instead of all
COPY create_certs/ create_certs/
COPY bumper/ bumper/
ENTRYPOINT ["python3", "-m", "bumper"]