Skip to content

Commit a18e15a

Browse files
Merge pull request #5910 from craigcomstock/ENT-13252/3.24
Adjusted valgrind-check Containerfile to ensure apt update and install are linked and cached together in one layer (3.24)
2 parents 759eddc + 74ea136 commit a18e15a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/valgrind-check/Containerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
FROM ubuntu:22.04 AS build
2-
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y --fix-missing
3-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libssl-dev libxml2-dev libpam0g-dev liblmdb-dev libacl1-dev libpcre2-dev
4-
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3 git flex bison byacc automake make autoconf libtool valgrind curl
2+
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y --fix-missing && \
3+
DEBIAN_FRONTEND=noninteractive apt-get install -y libssl-dev libxml2-dev libpam0g-dev liblmdb-dev libacl1-dev libpcre2-dev python3 git flex bison byacc automake make autoconf libtool valgrind curl
54
COPY masterfiles masterfiles
65
COPY core core
76
WORKDIR core

0 commit comments

Comments
 (0)