-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Minimal dockerfile to test giellalt stuffs fast | ||
|
||
FROM ubuntu:latest | ||
FROM ubuntu:20.04 | ||
MAINTAINER Flammie A Pirinen <[email protected]> | ||
|
||
RUN apt-get update && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Minimal dockerfile to test giellalt stuffs fast | ||
|
||
FROM ubuntu:latest | ||
MAINTAINER Flammie A Pirinen <[email protected]> | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
build-essential automake autoconf git wget lsb-release libtool zip pkg-config\ | ||
libsaxonb-java python3-pip python3-lxml python3-bs4 python3-html5lib \ | ||
libxml-twig-perl antiword xsltproc poppler-utils python3-svn wv \ | ||
python3-feedparser subversion openjdk-11-jdk cmake \ | ||
python3-tidylib python3-yaml libxml-libxml-perl libtext-brew-perl \ | ||
icu-devtools &&\ | ||
wget http://apertium.projectjj.com/apt/install-nightly.sh -O - | bash && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y apertium-all-dev \ | ||
python3-hfst libhfst-dev cg3 && \ | ||
mkdir github && \ | ||
mkdir github/giellalt && \ | ||
for repo in giella-core lang-sme lang-sma lang-smj lang-smn lang-sms ; do \ | ||
git clone https://github.com/giellalt/$repo github/giellalt/$repo ;\ | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Minimal dockerfile to test giellalt stuffs fast | ||
|
||
FROM ubuntu:20.04 | ||
MAINTAINER Flammie A Pirinen <[email protected]> | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
build-essential automake autoconf git wget lsb-release libtool zip pkg-config\ | ||
libsaxonb-java python3-pip python3-lxml python3-bs4 python3-html5lib \ | ||
libxml-twig-perl antiword xsltproc poppler-utils python3-svn wv \ | ||
python3-feedparser subversion openjdk-11-jdk cmake \ | ||
python3-tidylib python3-yaml libxml-libxml-perl libtext-brew-perl \ | ||
icu-devtools &&\ | ||
wget http://apertium.projectjj.com/apt/install-nightly.sh -O - | bash && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y apertium-all-dev \ | ||
python3-hfst libhfst-dev cg3 && \ | ||
mkdir github && \ | ||
mkdir github/giellalt && \ | ||
for repo in giella-core lang-sme lang-sma lang-smj lang-smn lang-sms ; do \ | ||
git clone https://github.com/giellalt/$repo github/giellalt/$repo ;\ | ||
done | ||
|