File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#
2- # expected variables in the CI environment
3- # - REGISTRY_URL = url of the docker registry
2+ # Expected variables in the CI environment
3+ # - REGISTRY_URL = URL of the Docker registry
44
55STAGE =build
66
Original file line number Diff line number Diff line change @@ -6,16 +6,18 @@ ARG php_version
66ARG DEBIAN_FRONTEND=noninteractive
77ENV PHP_VERSION=${php_version}
88
9- RUN export DEBIAN_FRONTEND=noninteractive && apt-get install -y --no-install-recommends \
9+ RUN export DEBIAN_FRONTEND=noninteractive \
10+ && apt-get update \
11+ && apt-get install -y --no-install-recommends \
1012 make \
1113 git \
1214 zip \
13- ; apt-get clean
15+ && apt-get clean
1416
1517# Install nodejs and npm to build js files
1618RUN apt-get install -y ca-certificates curl gnupg \
1719 && mkdir -p /etc/apt/keyrings \
1820 && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
19- && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18 .x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
21+ && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21 .x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
2022 && apt-get update \
2123 && apt-get install nodejs -y
Original file line number Diff line number Diff line change 11ARG REGISTRY_PREFIX=''
2- FROM ${REGISTRY_PREFIX}alpine:3.17 as build
2+ FROM ${REGISTRY_PREFIX}alpine:3.17 AS build
33
44COPY lizmap_web_client.zip .
55RUN unzip lizmap_web_client.zip
Original file line number Diff line number Diff line change 11# Lizmap web client Docker image
22
33The container deploys one Lizmap instance and may run php-fpm on the command line.
4- (see [ docker/php] ( https://hub.docker.com/_/php/ ) )
5-
4+ (see [ docker/php] ( https://hub.docker.com/_/php/ ) )
65
76## Configuration variables
87
You can’t perform that action at this time.
0 commit comments