mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
78 lines
3.0 KiB
Docker
78 lines
3.0 KiB
Docker
FROM alpine:edge
|
|
|
|
ARG MPFR_VERSION=3.1.5
|
|
ARG MPC_VERSION=1.0.3
|
|
|
|
ARG GPG_MPFR="07F3 DBBE CC1A 3960 5078 094D 980C 1976 98C3 739D"
|
|
ARG GPG_MPC="AD17 A21E F8AE D8F1 CC02 DBD9 F7D5 C9BF 765C 61E3"
|
|
ARG SHA1_MPC="b8be66396c726fdc36ebb0f692ed8a8cca3bcc66"
|
|
|
|
ENV UID=991 GID=991
|
|
|
|
RUN BUILD_DEPS=" \
|
|
build-base \
|
|
libtool \
|
|
libffi-dev \
|
|
libressl-dev \
|
|
python-dev \
|
|
gmp-dev \
|
|
mariadb-dev \
|
|
py2-pip \
|
|
tar \
|
|
gnupg" \
|
|
&& apk -U upgrade && apk add \
|
|
${BUILD_DEPS} \
|
|
libffi \
|
|
gmp \
|
|
libressl \
|
|
python \
|
|
py-setuptools \
|
|
openssh-client \
|
|
mariadb-client-libs \
|
|
tini \
|
|
su-exec \
|
|
&& cd /tmp && wget -q http://www.mpfr.org/mpfr-current/mpfr-${MPFR_VERSION}.tar.gz \
|
|
&& echo "Verifying authenticity of mpfr-${MPFR_VERSION}.tar.gz..." \
|
|
&& wget -q http://www.mpfr.org/mpfr-current/mpfr-${MPFR_VERSION}.tar.gz.asc \
|
|
&& gpg --recv-keys 98C3739D \
|
|
&& FINGERPRINT="$(LANG=C gpg --verify mpfr-${MPFR_VERSION}.tar.gz.asc mpfr-${MPFR_VERSION}.tar.gz 2>&1 \
|
|
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
|
|
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
|
|
&& if [ "${FINGERPRINT}" != "${GPG_MPFR}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
|
|
&& echo "All seems good, now unpacking mpfr-${MPFR_VERSION}.tar.gz..." \
|
|
&& tar xzf mpfr-${MPFR_VERSION}.tar.gz && cd mpfr-${MPFR_VERSION} \
|
|
&& ./configure && make && make install \
|
|
&& cd /tmp && wget -q ftp://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz \
|
|
&& echo "Verifying both integrity and authenticity of mpc-${MPC_VERSION}.tar.gz..." \
|
|
&& CHECKSUM=$(sha1sum mpc-${MPC_VERSION}.tar.gz | awk '{print $1}') \
|
|
&& if [ "${CHECKSUM}" != "${SHA1_MPC}" ]; then echo "Warning! Checksum does not match!" && exit 1; fi \
|
|
&& wget -q ftp://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz.sig \
|
|
&& gpg --recv-keys 0xF7D5C9BF765C61E3 \
|
|
&& FINGERPRINT="$(LANG=C gpg --verify mpc-${MPC_VERSION}.tar.gz.sig mpc-${MPC_VERSION}.tar.gz 2>&1 \
|
|
| sed -n "s#Primary key fingerprint: \(.*\)#\1#p")" \
|
|
&& if [ -z "${FINGERPRINT}" ]; then echo "Warning! Invalid GPG signature!" && exit 1; fi \
|
|
&& if [ "${FINGERPRINT}" != "${GPG_MPC}" ]; then echo "Warning! Wrong GPG fingerprint!" && exit 1; fi \
|
|
&& echo "All seems good, now unpacking mpc-${MPC_VERSION}.tar.gz..." \
|
|
&& tar xzf mpc-${MPC_VERSION}.tar.gz && cd mpc-${MPC_VERSION} \
|
|
&& ./configure --with-mpfr-lib=/usr/local/lib --with-mpfr-include=/usr/local/include \
|
|
&& make && make install \
|
|
&& mkdir /cowrie && cd /cowrie \
|
|
&& wget -qO- https://github.com/micheloosterhof/cowrie/archive/master.tar.gz | tar xz --strip 1 \
|
|
&& pip install --no-cache -r requirements.txt \
|
|
&& pip install --no-cache mysql-python \
|
|
&& mv cowrie.cfg.dist cowrie.cfg \
|
|
&& apk del ${BUILD_DEPS} \
|
|
&& rm -rf /var/cache/apk/* /tmp/* /root/.gnupg
|
|
|
|
COPY run.sh /usr/local/bin/run.sh
|
|
|
|
RUN chmod +x /usr/local/bin/run.sh
|
|
|
|
VOLUME /cowrie/log /cowrie/dl /custom
|
|
|
|
EXPOSE 2222
|
|
|
|
LABEL maintainer="Wonderfall <wonderfall@targaryen.house>"
|
|
|
|
CMD ["run.sh"]
|