This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-diagnose/images_build/server_web/Dockerfile

32 lines
747 B
Docker
Raw Normal View History

2019-12-20 15:48:39 +08:00
# Start with Ubuntu 16.04 (LTS), and build badssl.com up from there
FROM ubuntu:16.04
MAINTAINER TSG
2019-12-20 15:48:39 +08:00
RUN sed -i s@/archive.ubuntu.com/@/mirrors.163.com/@g /etc/apt/sources.list \
&& apt-get clean \
&& apt-get update \
&& apt-get install -y apt-transport-https \
&& apt-get install -y software-properties-common \
&& apt-add-repository ppa:brightbox/ruby-ng \
&& apt-get update \
&& apt-get install -y \
build-essential \
git \
libffi-dev \
make \
nginx \
ruby2.6 \
ruby2.6-dev \
net-tools \
iputils-ping \
2020-09-21 11:17:36 +08:00
faketime \
&& gem update --system 3.1.6 \
2019-12-20 15:48:39 +08:00
&& gem install jekyll
# Install badssl.com
ADD . badssl.com
WORKDIR badssl.com
# Start things up!
CMD tail -f /dev/null