Skip to content

Commit 413c18f

Browse files
committed
Ensure that image contains rsync so that bin/package.sh works.
If packaging was working before, it was only because of a dirty lambda/ directory which had already received a copy of the copied files. A subsequent commit will suggest the use of a clean target on a Makefile to make cleaning dirty build directories easier to achieve. Signed-off-by: Jon Seymour <jon@wildducktheories.com>
1 parent 4cbce50 commit 413c18f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,10 @@ RUN \
212212
./config shared --prefix=${PREFIX}/openssl --openssldir=${PREFIX}/openssl; \
213213
make depend; make install; cd ..; rm -rf openssl
214214

215+
# rsync is required by bin/package.sh, so install it here
216+
RUN \
217+
yum install -y rsync
218+
215219

216220
# Copy shell scripts and config files over
217221
COPY bin/* /usr/local/bin/

0 commit comments

Comments
 (0)