@@ -13,8 +13,8 @@ ARG BASE="fpm-alpine"
13
13
# ##########################
14
14
15
15
# full kimai source
16
- FROM alpine:3.13.0 AS git-dev
17
- ARG KIMAI="1.11.1 "
16
+ FROM alpine:3.13.1 AS git-dev
17
+ ARG KIMAI="1.12 "
18
18
# I need to do this check somewhere, we discard all but the checkout so doing here doesn't hurt
19
19
ADD test-kimai-version.sh /test-kimai-version.sh
20
20
RUN /test-kimai-version.sh
@@ -27,15 +27,15 @@ WORKDIR /opt/kimai
27
27
RUN rm -r tests
28
28
29
29
# composer base image
30
- FROM composer:2.0.8 AS composer
30
+ FROM composer:2.0.9 AS composer
31
31
32
32
33
33
# ##########################
34
34
# PHP extensions
35
35
# ##########################
36
36
37
37
# fpm alpine php extension base
38
- FROM php:7.4.12 -fpm-alpine3.12 AS fpm-alpine-php-ext-base
38
+ FROM php:7.4.15 -fpm-alpine3.13 AS fpm-alpine-php-ext-base
39
39
RUN apk add --no-cache \
40
40
# build-tools
41
41
autoconf \
@@ -70,7 +70,7 @@ RUN apk add --no-cache \
70
70
71
71
72
72
# apache debian php extension base
73
- FROM php:7.4.12 -apache-buster AS apache-debian-php-ext-base
73
+ FROM php:7.4.15 -apache-buster AS apache-debian-php-ext-base
74
74
RUN apt-get update
75
75
RUN apt-get install -y \
76
76
libldap2-dev \
@@ -115,7 +115,7 @@ RUN docker-php-ext-install -j$(nproc) xsl
115
115
# ##########################
116
116
117
117
# fpm-alpine base build
118
- FROM php:7.4.12 -fpm-alpine3.12 AS fpm-alpine-base
118
+ FROM php:7.4.15 -fpm-alpine3.13 AS fpm-alpine-base
119
119
RUN apk add --no-cache \
120
120
bash \
121
121
freetype \
@@ -143,7 +143,7 @@ HEALTHCHECK --interval=20s --timeout=10s --retries=3 \
143
143
# apache-debian base build
144
144
# ##########################
145
145
146
- FROM php:7.4.12 -apache-buster AS apache-debian-base
146
+ FROM php:7.4.15 -apache-buster AS apache-debian-base
147
147
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
148
148
RUN apt-get update && \
149
149
apt-get install -y \
0 commit comments