forked from fossology/fossology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.Dockerfile
83 lines (74 loc) · 4.78 KB
/
.gitpod.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# FOSSology gitpod.io Dockerfile
# Copyright (C) 2021 Siemens AG
# Author: Gaurav Mishra <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Description: Docker container image recipe for gitpod.io workspace
FROM gitpod/workspace-full:latest
USER root
RUN install-packages --option Dpkg::Options::="--force-confold" \
binutils build-essential bzip2 cabextract composer cpio cppcheck \
curl debhelper devscripts dpkg-dev genisoimage git git-core gzip \
libboost-filesystem-dev libboost-program-options-dev \
libboost-regex-dev libboost-system-dev libcppunit-dev libcunit1-dev \
libdbd-sqlite3-perl libdistro-info-perl libgcrypt20-dev \
libicu66 libicu-dev libjson-c-dev libjsoncpp-dev \
liblocal-lib-perl libmagic-dev libmxml-dev libpcre3-dev libpq-dev \
librpm-dev libspreadsheet-writeexcel-perl libsqlite3-0 libsqlite3-dev \
libssl-dev libtext-template-perl libxml2-dev lsb-release p7zip p7zip-full \
poppler-utils postgresql-12 postgresql-contrib-12 \
postgresql-server-dev-all rpm sleuthkit s-nail sqlite3 subversion tar \
unrar-free unzip upx-ucl wget zip
# Fix PHP for FOSSology
RUN PHP_PATH=$(php --ini | awk '/\/etc\/php.*\/cli$/{print $5}') \
&& phpIni="${PHP_PATH}/../apache2/php.ini" \
&& TIMEZONE=$(cat /etc/timezone) \
&& sed -i 's/^\(max_execution_time\s*=\s*\).*$/\1300/' $phpIni \
&& sed -i 's/^\(memory_limit\s*=\s*\).*$/\1702M/' $phpIni \
&& sed -i 's/^\(post_max_size\s*=\s*\).*$/\1701M/' $phpIni \
&& sed -i 's/^\(upload_max_filesize\s*=\s*\).*$/\1700M/' $phpIni \
&& sed -i "s%.*date.timezone =.*%date.timezone = $TIMEZONE%" $phpIni
USER gitpod
# Copy PostgreSQL setup from https://github.com/gitpod-io/workspace-images/blob/master/postgres/Dockerfile
# Changes:
# 1. Call initdb with `postgres' as the user
# 2. Change the unix_socket_directories in postgresql.conf
# Setup PostgreSQL server for user gitpod
ENV PATH="$PATH:/usr/lib/postgresql/12/bin"
ENV PGDATA="/workspace/.pgsql/data"
ENV SOCLOC="${HOME}/.pg_ctl/sockets"
RUN mkdir -p ~/.pg_ctl/bin ~/.pg_ctl/sockets \
&& printf '#!/bin/bash\n[ ! -d $PGDATA ] && mkdir -p $PGDATA && initdb -D $PGDATA -U postgres\npg_ctl -D $PGDATA -l ~/.pg_ctl/log -o "-k ~/.pg_ctl/sockets" start\n' > ~/.pg_ctl/bin/pg_start \
&& printf '#!/bin/bash\npg_ctl -D $PGDATA -l ~/.pg_ctl/log -o "-k ~/.pg_ctl/sockets" stop\n' > ~/.pg_ctl/bin/pg_stop \
&& chmod +x ~/.pg_ctl/bin/* \
&& sudo sed -i "s:^\(unix_socket_directories\s*=\s*\).*\$:\1'${SOCLOC}':" /etc/postgresql/12/main/postgresql.conf \
&& echo "localhost:*:*:gitpod:gitpod" >> ~/.pgpass \
&& chmod 600 ~/.pgpass
ENV PATH="$PATH:$HOME/.pg_ctl/bin"
ENV DATABASE_URL="postgresql://postgres@localhost"
ENV PGHOSTADDR="127.0.0.1"
ENV PGDATABASE="postgres"
# This is a bit of a hack. At the moment we have no means of starting background
# tasks from a Dockerfile. This workaround checks, on each bashrc eval, if the
# PostgreSQL server is running, and if not starts it.
RUN printf "\n# Auto-start PostgreSQL server.\n[[ \$(pg_ctl status | grep PID) ]] || pg_start > /dev/null\n" >> ~/.bashrc
# Git branch prepend
RUN printf "parse_git_branch() {\n git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\\\1)/'\n}\n" >> ~/.bashrc \
&& echo 'PS1="\[\e]0;\u: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\] \[\033[0;33m\]\$(parse_git_branch)\[\033[00m\]$ "' >> ~/.bashrc
# Add custom aliases
RUN printf "fossinstallparams=\"PREFIX='/workspace/fossy/code' INITDIR='/workspace/fossy/etc' REPODIR='/workspace/fossy/srv' LOCALSTATEDIR='/workspace/fossy/var' APACHE2_SITE_DIR='/workspace/apache' SYSCONFDIR='/workspace/fossy/etc/fossology' PROJECTUSER='gitpod' PROJECTGROUP='gitpod'\"\n" >> ~/.bashrc \
&& printf '# Fossology alias\nalias fossrun="sudo /workspace/fossy/code/share/fossology/scheduler/agent/fo_scheduler --verbose=3 --reset --config /workspace/fossy/etc/fossology/"\n' >> ~/.bash_aliases \
&& printf 'alias fossinstallclean="make clean empty-cache ${fossinstallparams} && make install ${fossinstallparams} && sudo -E ./install/fo-postinstall -oe"\n' >> ~/.bash_aliases \
&& printf 'alias fossinstallnoclean="make install empty-cache ${fossinstallparams} && sudo -E ./install/fo-postinstall -eo"\n' >> ~/.bash_aliases