File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ FROM postgres:${PG_VERSION}-alpine
3
3
ENV LANG=C.UTF-8 PGDATA=/pg/data
4
4
5
5
RUN if [ "${CHECK_CODE}" = "clang" ] ; then \
6
- apk --no-cache add clang-analyzer --repository http://dl-3.alpinelinux.org/alpine/edge/main; \
6
+ apk --no-cache add clang-analyzer make musl-dev --repository http://dl-3.alpinelinux.org/alpine/edge/main; \
7
7
fi
8
8
9
9
RUN if [ "${CHECK_CODE}" = "cppcheck" ] ; then \
10
10
apk --no-cache add cppcheck --repository http://dl-cdn.alpinelinux.org/alpine/v3.6/community; \
11
11
fi
12
12
13
13
RUN if [ "${CHECK_CODE}" = "false" ] ; then \
14
- apk --no-cache add python3 gcc make musl-dev cppcheck ;\
14
+ apk --no-cache add python3 gcc make musl-dev;\
15
15
pip3 install testgres; \
16
16
fi
17
17
You can’t perform that action at this time.
0 commit comments