It was done on the following environment:
- Raspberry Pi 3 Model B
- OS: Ubuntu Core
- Pi is connected to internet via Ethernet
Here are the overview of the steps:
trigger: | |
- master | |
jobs: | |
- job: determine_ver | |
pool: | |
# vmImage: 'Ubuntu-16.04' | |
vmImage: 'windows-2019' | |
steps: |
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 AS runtime | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends \ | |
unixodbc unixodbc-dev \ | |
&& rm -rf /var/lib/apt/lists/* | |
COPY ./libodbcHDB.so ./app/hana/ | |
COPY ./odbc.ini /etc/ |