diff options
-rw-r--r-- | .github/workflows/docker-image.yml | 4 | ||||
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Dockerfile_test | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 6e51f1e..8e39202 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -12,9 +12,9 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Build the docker image + - name: Build docker image run: docker build -t reo7sp/tgbot-cpp -f Dockerfile . - - name: Build the docker image with unit tests + - name: Build docker image with examples and unit tests run: docker build -t reo7sp/tgbot-cpp-test -f Dockerfile_test . - name: Run unit tests run: docker run --rm reo7sp/tgbot-cpp-test @@ -1,5 +1,5 @@ FROM debian:stretch -MAINTAINER Oleg Morozenkov <a@reo7sp.ru> +MAINTAINER Oleg Morozenkov <m@oleg.rocks> RUN apt-get -qq update && \ apt-get -qq install -y g++ make binutils cmake libssl-dev libboost-system-dev libcurl4-openssl-dev zlib1g-dev diff --git a/Dockerfile_test b/Dockerfile_test index b71fbd7..b9a7e06 100644 --- a/Dockerfile_test +++ b/Dockerfile_test @@ -1,5 +1,5 @@ FROM ubuntu:18.04 -MAINTAINER Oleg Morozenkov <a@reo7sp.ru> +MAINTAINER Oleg Morozenkov <m@oleg.rocks> RUN apt-get -qq update && \ apt-get -qq install -y \ |