Skip to content
This repository was archived by the owner on Jun 24, 2020. It is now read-only.

Commit 83a90e9

Browse files
committed
burp v2.0.46
1 parent 311339d commit 83a90e9

4 files changed

Lines changed: 1106 additions & 9 deletions

File tree

Dockerfile

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
1616
org.label-schema.vcs-type="Git" \
1717
org.label-schema.vcs-url="https://github.com/computerfr33k/docker-burp-backup-server"
1818

19-
COPY conf/ /opt/docker/
20-
2119
RUN /usr/local/bin/apk-upgrade \
2220
&& /usr/local/bin/apk-install \
2321
librsync \
@@ -40,11 +38,18 @@ RUN /usr/local/bin/apk-upgrade \
4038
rsync \
4139
libstdc++ \
4240
libgcc \
43-
# Build and install burp server
44-
&& /opt/docker/bin/provision add --tag bootstrap --tag entrypoint burp-server \
41+
autoconf \
42+
automake \
43+
libtool \
44+
unzip
45+
46+
COPY conf/ /opt/docker/
47+
48+
RUN /opt/docker/bin/provision add --tag bootstrap --tag entrypoint burp-server \
4549
&& /opt/docker/bin/bootstrap.sh \
4650
&& rm -rf /tmp/* \
47-
# Remove Dev Libraries
51+
52+
# Remove Dev Libs
4853
&& apk del \
4954
librsync-dev \
5055
zlib-dev \
@@ -56,4 +61,7 @@ RUN /usr/local/bin/apk-upgrade \
5661
gcc \
5762
g++ \
5863
make \
59-
git
64+
git \
65+
autoconf \
66+
automake \
67+
libtool \

conf/provision/roles/burp-server/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
APPLICATION_UID: "{{ lookup('env', 'APPLICATION_UID') }}"
44
APPLICATION_GID: "{{ lookup('env', 'APPLICATION_GID') }}"
55

6-
BURP_VERSION: "1.4.40"
6+
BURP_VERSION: "2.0.46"
77

88
# Burp Cronjobs
99
ENABLE_CRON_DEDUP: "{{ lookup('env', 'ENABLE_CRON_DEDUP') | default(True) }}"

0 commit comments

Comments
 (0)