use ENV DEBIAN_FRONTEND noninteractive
This commit is contained in:
parent
29a0fff311
commit
147826ed92
11
Dockerfile
11
Dockerfile
@ -3,10 +3,17 @@ FROM ubuntu:latest
|
|||||||
RUN apt update -y && apt install -y make
|
RUN apt update -y && apt install -y make
|
||||||
RUN apt install -y git
|
RUN apt install -y git
|
||||||
RUN apt install -y gcc
|
RUN apt install -y gcc
|
||||||
RUN apt install -y python3
|
|
||||||
RUN apt install -y python-pandas
|
|
||||||
RUN gcc --version
|
RUN gcc --version
|
||||||
RUN apt install -y build-essential
|
RUN apt install -y build-essential
|
||||||
|
|
||||||
|
# install python
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y python3-pip python3-dev \
|
||||||
|
&& cd /usr/local/bin \
|
||||||
|
&& ln -s /usr/bin/python3 python \
|
||||||
|
&& pip3 install --upgrade pip
|
||||||
|
|
||||||
RUN git clone https://github.com/usnistgov/SCTK.git
|
RUN git clone https://github.com/usnistgov/SCTK.git
|
||||||
WORKDIR SCTK
|
WORKDIR SCTK
|
||||||
RUN make config && make all && make check && make install && make doc
|
RUN make config && make all && make check && make install && make doc
|
||||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -1,6 +1,7 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent { dockerfile true }
|
agent { dockerfile true }
|
||||||
stages {
|
stages {
|
||||||
|
parallel {
|
||||||
stage('Zadanie 1 - Jenkins') {
|
stage('Zadanie 1 - Jenkins') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Kopiowanie plików z wynikami rozpoznawania mowy z artefaktów projektu ASR-eval'
|
echo 'Kopiowanie plików z wynikami rozpoznawania mowy z artefaktów projektu ASR-eval'
|
||||||
@ -27,6 +28,7 @@ pipeline {
|
|||||||
sh 'git --version'
|
sh 'git --version'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Zadanie 3 - Metryki') {
|
stage('Zadanie 3 - Metryki') {
|
||||||
steps {
|
steps {
|
||||||
|
Loading…
Reference in New Issue
Block a user