mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
cf6ceba422
This should fix the error: `fatal: unable to access 'https://github.com/Author/Repo.git': Problem with the SSL CA cert (path? access rights?)`
38 lines
1.1 KiB
Docker
38 lines
1.1 KiB
Docker
FROM ubuntu:trusty
|
|
|
|
# wrapper script for apt-get
|
|
COPY .docker/apt-get-install /usr/local/bin/apt-get-install
|
|
RUN chmod +x /usr/local/bin/apt-get-install
|
|
|
|
RUN apt-get-install build-essential libtool g++ gcc \
|
|
texinfo curl wget automake autoconf python python-dev git subversion \
|
|
unzip virtualenvwrapper sudo git virtualenvwrapper ca-certificates
|
|
|
|
RUN useradd -m ctf
|
|
RUN echo "ctf ALL=NOPASSWD: ALL" > /etc/sudoers.d/ctf
|
|
|
|
COPY .git /home/ctf/tools/.git
|
|
RUN chown -R ctf.ctf /home/ctf/tools
|
|
|
|
# git checkout of the files
|
|
USER ctf
|
|
WORKDIR /home/ctf/tools
|
|
RUN git checkout .
|
|
|
|
# add non-commited scripts
|
|
USER root
|
|
COPY bin/manage-tools /home/ctf/tools/bin/
|
|
COPY bin/ctf-tools-pip /home/ctf/tools/bin/
|
|
COPY bin/ctf-tools-venv-activate /home/ctf/tools/bin/
|
|
COPY bin/ctf-tools-venv-activate3 /home/ctf/tools/bin/
|
|
RUN chown -R ctf.ctf /home/ctf/tools
|
|
|
|
# finally run ctf-tools setup
|
|
USER ctf
|
|
RUN bin/manage-tools -s setup
|
|
RUN bin/ctf-tools-pip install appdirs
|
|
#RUN echo "workon ctftools" >> /home/ctf/.bashrc
|
|
RUN echo 'source $(which ctf-tools-venv-activate)' >> /home/ctf/.bashrc
|
|
|
|
WORKDIR /home/ctf
|
|
CMD bash -i
|