Commit 532d300e authored by Dave Cooper's avatar Dave Cooper
Browse files

loosen up docker container for being able to run make!

parent 7eca2448
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ FROM debian:testing-slim
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get -y update && apt-get -y upgrade && apt-get -y autoremove && \
    apt-get -y install openssl libssl-dev iputils-ping telnet ghostscript wamerican \
    apt-get -y install openssl libssl-dev iputils-ping telnet ghostscript wamerican rsync \
    zlib1g-dev libc6-dev && \
    rm -rf /var/cache/apt/* && apt-get clean

@@ -52,5 +52,9 @@ RUN chmod +x /opt/gendl/run-pipeline-tests.sh
# Run pipeline tests with a 60-second timeout
RUN /opt/gendl/run-pipeline-tests.sh


USER root

RUN chown gendl-user /opt

CMD ["/etc/rc.local"]
 No newline at end of file