mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
added golang
This commit is contained in:
20
backend/scripts/install-go.sh
Normal file
20
backend/scripts/install-go.sh
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
# lock global
|
||||
touch /tmp/install.lock
|
||||
|
||||
# lock
|
||||
touch /tmp/install-go.lock
|
||||
|
||||
# install golang
|
||||
apt-get update
|
||||
apt-get install -y golang
|
||||
|
||||
# environment variables
|
||||
export GOPROXY=https://goproxy.cn
|
||||
export GOPATH=/opt/go
|
||||
|
||||
# unlock global
|
||||
rm /tmp/install.lock
|
||||
|
||||
# unlock
|
||||
rm /tmp/install-go.lock
|
||||
@@ -8,8 +8,8 @@ touch /tmp/install-nodejs.lock
|
||||
|
||||
# install node.js
|
||||
curl -sL https://deb.nodesource.com/setup_10.x | bash -
|
||||
apt install -y nodejs
|
||||
apt install -y npm
|
||||
apt-get update && apt install -y nodejs nodejs-dev node-gyp libssl1.0-dev
|
||||
apt-get update && apt install -y npm
|
||||
|
||||
# install chromium
|
||||
# See https://crbug.com/795759
|
||||
@@ -20,7 +20,17 @@ apt-get update && apt-get install -yq libgconf-2-4
|
||||
# Note: this installs the necessary libs to make the bundled version
|
||||
# of Chromium that Puppeteer
|
||||
# installs, work.
|
||||
apt-get update && apt-get install -y --no-install-recommends gconf-service libasound2 libatk1.0-0 libatk-bridge2.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y wget gnupg \
|
||||
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
||||
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
|
||||
&& apt-get update \
|
||||
&& apt-get -y install xvfb gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 \
|
||||
libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 \
|
||||
libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 \
|
||||
libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 \
|
||||
libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# install default dependencies
|
||||
PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors
|
||||
|
||||
@@ -23,3 +23,19 @@ then
|
||||
/bin/sh /app/backend/scripts/install-dotnet.sh
|
||||
echo "installed dotnet"
|
||||
fi
|
||||
|
||||
# install php
|
||||
if [ "${CRAWLAB_SERVER_LANG_PHP}" = "Y" ];
|
||||
then
|
||||
echo "installing php"
|
||||
/bin/sh /app/backend/scripts/install-php.sh
|
||||
echo "installed php"
|
||||
fi
|
||||
|
||||
# install go
|
||||
if [ "${CRAWLAB_SERVER_LANG_GO}" = "Y" ];
|
||||
then
|
||||
echo "installing go"
|
||||
/bin/sh /app/backend/scripts/install-go.sh
|
||||
echo "installed go"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user