Remove extra packages; not worth the resources
This commit is contained in:
parent
2dd50d8069
commit
646a7981fc
4 changed files with 3 additions and 40 deletions
32
README.md
32
README.md
|
@ -83,35 +83,3 @@ For Pascal:
|
||||||
|
|
||||||
For Go:
|
For Go:
|
||||||
- None
|
- None
|
||||||
|
|
||||||
|
|
||||||
## Packages
|
|
||||||
|
|
||||||
Apart from the standard libraries, some other libraries come pre-installed.
|
|
||||||
|
|
||||||
For JavaScript:
|
|
||||||
- Node libraries
|
|
||||||
- lodash
|
|
||||||
- moment
|
|
||||||
- cheerio
|
|
||||||
|
|
||||||
For Python:
|
|
||||||
- numpy (Python 3 only)
|
|
||||||
|
|
||||||
For Haskell:
|
|
||||||
- GHC libraries
|
|
||||||
- aeson
|
|
||||||
- async
|
|
||||||
- attoparsec
|
|
||||||
- integer-logarithms
|
|
||||||
- megaparsec
|
|
||||||
- random
|
|
||||||
- scientific
|
|
||||||
- split
|
|
||||||
- vector
|
|
||||||
|
|
||||||
For Pascal:
|
|
||||||
- None
|
|
||||||
|
|
||||||
For Go:
|
|
||||||
- None
|
|
||||||
|
|
|
@ -2,9 +2,7 @@ FROM alpine
|
||||||
LABEL author="1Computer1"
|
LABEL author="1Computer1"
|
||||||
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add build-base wget ghc cabal
|
RUN apk add build-base ghc
|
||||||
RUN cabal update
|
|
||||||
RUN cabal install aeson async attoparsec integer-logarithms megaparsec random scientific split vector
|
|
||||||
|
|
||||||
COPY run.sh /var/run/
|
COPY run.sh /var/run/
|
||||||
WORKDIR /var/ws
|
WORKDIR /var/ws
|
||||||
|
|
|
@ -2,8 +2,7 @@ FROM alpine
|
||||||
LABEL author="1Computer1"
|
LABEL author="1Computer1"
|
||||||
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add nodejs npm
|
RUN apk add nodejs
|
||||||
RUN npm i lodash moment cheerio
|
|
||||||
|
|
||||||
COPY run.sh /var/run/
|
COPY run.sh /var/run/
|
||||||
WORKDIR /var/ws
|
WORKDIR /var/ws
|
||||||
|
|
|
@ -2,9 +2,7 @@ FROM alpine
|
||||||
LABEL author="1Computer1"
|
LABEL author="1Computer1"
|
||||||
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add build-base python3 python3-dev
|
RUN apk add python3
|
||||||
RUN python3 -m pip install -U pip
|
|
||||||
RUN python3 -m pip install -U numpy
|
|
||||||
|
|
||||||
COPY run.sh /var/run/
|
COPY run.sh /var/run/
|
||||||
WORKDIR /var/ws
|
WORKDIR /var/ws
|
||||||
|
|
Loading…
Reference in a new issue