We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentcc1b022 commit915593eCopy full SHA for 915593e
Dockerfile.tmpl
@@ -3,15 +3,15 @@ FROM postgres:${PG_VERSION}-alpine
3
ENV LANG=C.UTF-8 PGDATA=/pg/data
4
5
RUN if [ "${CHECK_CODE}" = "clang" ] ; then \
6
-apk --no-cache add clang-analyzer --repository http://dl-3.alpinelinux.org/alpine/edge/main; \
+apk --no-cache add clang-analyzermake musl-dev--repository http://dl-3.alpinelinux.org/alpine/edge/main; \
7
fi
8
9
RUN if [ "${CHECK_CODE}" = "cppcheck" ] ; then \
10
apk --no-cache add cppcheck --repository http://dl-cdn.alpinelinux.org/alpine/v3.6/community; \
11
12
13
RUN if [ "${CHECK_CODE}" = "false" ] ; then \
14
-apk --no-cache add python3 gcc make musl-dev cppcheck;\
+apk --no-cache add python3 gcc make musl-dev;\
15
pip3 install testgres; \
16
17