Commit 0f2ff186 authored by YannGarcia's avatar YannGarcia
Browse files

Enhance docker process

parent eeb4de98
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ cd $(dirname $0)
run_dir=`pwd`

# Docker version 2
cd ./virtualization/docker
cd ./virtualization/docker-dev
./build.sh #--force-stfubuntu
ret_code=`echo $?`

+1 −1
Original line number Diff line number Diff line
FROM stfubuntu:22.04
FROM stfubuntu:20.04

LABEL ETSI ITS
LABEL description="TS.ITS Docker Image"
+1 −1
Original line number Diff line number Diff line
FROM ubuntu:22.04
FROM ubuntu:20.04

LABEL ETSI CTI
LABEL description="STF Docker Ubuntu image"
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ echo -e "*****************************\n* Install asn1c\n***********************
cd ${HOME}/frameworks || exit 1
git clone https://github.com/fillabs/asn1c.git ./asn1c || exit 1
cd ./asn1c
sed --in-place 's/AC_CHECK_INCLUDES_DEFAULT/#AC_CHECK_INCLUDES_DEFAULT/g' ./configure.ac
autoreconf -iv && ./configure --prefix=${HOME} && make install || exit 1

cd ${HOME}