File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,15 @@ FROM postgres:${PG_VERSION}-alpine
33ENV LANG=C.UTF-8 PGDATA=/pg/data
44
55RUN if [ "${CHECK_CODE}" = "clang" ] ; then \
6- echo 'http://dl-3.alpinelinux.org/alpine/edge/main' > /etc/apk/repositories; \
7- apk --no-cache add clang-analyzer make musl-dev gcc; \
6+ apk --no-cache add clang-analyzer make musl-dev gcc icu-dev; \
87 fi
98
109RUN if [ "${CHECK_CODE}" = "cppcheck" ] ; then \
1110 apk --no-cache add cppcheck --repository http://dl-cdn.alpinelinux.org/alpine/v3.6/community; \
1211 fi
1312
1413RUN if [ "${CHECK_CODE}" = "false" ] ; then \
15- echo 'http://dl-3.alpinelinux.org/alpine/edge/main' > /etc/apk/repositories; \
16- apk --no-cache add curl python3 gcc make musl-dev icu-dev;\
14+ apk --no-cache add curl gcc make musl-dev icu-dev;\
1715 fi
1816
1917RUN mkdir -p /pg/data && \
You can’t perform that action at this time.
0 commit comments