File tree 5 files changed +31
-8
lines changed
5 files changed +31
-8
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v4
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
11
12
12
13
- name : Build Docker images
13
14
uses : docker/build-push-action@v5
14
15
with :
15
- file : docker/ubuntu/Dockerfile
16
+ file : docker/ubuntu/Dockerfile
17
+ load : true
18
+ tags : cgimap:2004
19
+ - name : Running Docker image
20
+ run : |
21
+ docker run --entrypoint /bin/bash cgimap:2004 -c "/usr/local/bin/openstreetmap-cgimap --help"
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v4
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
11
12
12
13
- name : Build Docker images
13
14
uses : docker/build-push-action@v5
14
15
with :
15
- file : docker/ubuntu/Dockerfile2204
16
+ file : docker/ubuntu/Dockerfile2204
17
+ load : true
18
+ tags : cgimap:2204
19
+ - name : Running Docker image
20
+ run : |
21
+ docker run --entrypoint /bin/bash cgimap:2204 -c "/usr/local/bin/openstreetmap-cgimap --help"
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v4
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
11
12
12
13
- name : Build Docker images
13
14
uses : docker/build-push-action@v5
14
15
with :
15
16
file : docker/debian/Dockerfile_bookworm
16
-
17
+ load : true
18
+ tags : cgimap:bookworm
19
+ - name : Running Docker image
20
+ run : |
21
+ docker run --entrypoint /bin/bash cgimap:bookworm -c "/usr/local/bin/openstreetmap-cgimap --help"
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v4
10
+ - name : Checkout
11
+ uses : actions/checkout@v4
11
12
12
13
- name : Build Docker images
13
14
uses : docker/build-push-action@v5
14
15
with :
15
16
file : docker/debian/Dockerfile_trixie
17
+ load : true
18
+ tags : cgimap:trixie
19
+ - name : Running Docker image
20
+ run : |
21
+ docker run --entrypoint /bin/bash cgimap:trixie -c "/usr/local/bin/openstreetmap-cgimap --help"
16
22
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ FROM debian:trixie
30
30
31
31
RUN apt-get update -qq && \
32
32
apt-get install -y \
33
- libfcgi-bin libmemcached11 libboost-program-options1.74 .0 \
33
+ libfcgi-bin libmemcached11 libboost-program-options1.83 .0 \
34
34
libxml2 libcrypto++8 libyajl2 libpqxx-7.8 zlib1g libbrotli1 libfmt9 \
35
35
--no-install-recommends && \
36
36
apt-get clean && \
You can’t perform that action at this time.
0 commit comments