Compare commits

..

No commits in common. "ef5f38b3296d431aa336b18b8da855999794caa4" and "567809ed42e39590a4a504ce3887b48529f81787" have entirely different histories.

6 changed files with 1 additions and 31 deletions

View File

@ -5,7 +5,7 @@ RUN for i in $(seq 1001 1500); do \
useradd -M runner$i -g $i -u $i ; \
done
RUN apt-get update && \
apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils build-essential && \
apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils && \
rm -rf /var/lib/apt/lists/*
ENV NODE_ENV=production

View File

@ -1,19 +0,0 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl "https://www.cpan.org/src/5.0/perl-5.26.1.tar.gz" -o perl.tar.gz
tar xzf perl.tar.gz --strip-components=1
./Configure -des -Dprefix="$PREFIX"
make -j$(nproc)
make install -j$(nproc)
cd ..
rm -rf build

View File

@ -1 +0,0 @@
export PATH=$PWD/bin:$PATH

View File

@ -1,6 +0,0 @@
{
"language": "perl",
"version": "5.26.1",
"author": "Dan Vargas <danvargas46@gmail.com>",
"aliases": ["perl", "pl"]
}

View File

@ -1,3 +0,0 @@
#!/bin/bash
perl "$@"

View File

@ -1 +0,0 @@
print("OK")