Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c5dc3dc

Browse files
committed
fix docker image permissions for regression tests
1 parent b7ac62b commit c5dc3dc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ ENV PATH /pg/install/bin:$PATH
1212

1313
COPY ./ /pg/src
1414

15-
# crutch to allow regression test to write there
16-
RUN mkdir -p /pg/src/src/test/regress/results && \
17-
chown postgres:postgres /pg/src/src/test/regress/results
18-
1915
RUN cd /pg/src && \
2016
./configure --enable-cassert --enable-debug --prefix=/pg/install && \
2117
make -j 4 install
2218

19+
# crutch to allow regression test to write there
20+
RUN chown -R postgres:postgres /pg/src/src/test/regress

0 commit comments

Comments
 (0)