summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarmel Twow <69679854+oodler577@users.noreply.github.com>2021-04-12 21:52:23 -0500
committerGitHub <noreply@github.com>2021-04-12 21:52:23 -0500
commit0047bf30063671ea8b3978f965fc1142df9809da (patch)
tree10ad17a19e628797a1e167f4cedf547a2b503739
parentb2ddda280e27e9261f8b4aa143a74993edcd9e00 (diff)
downloadragel-0047bf30063671ea8b3978f965fc1142df9809da.tar.gz
Removed -j from `make` in Dockerfile
Build process didn't seem to like the `-j` with no argument.
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 95c72d6d..1f35eb94 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,7 +18,7 @@ RUN gpg --verify colm-${COLM_VERSION}.tar.gz.asc colm-${COLM_VERSION}.tar.gz
RUN tar -zxvf colm-${COLM_VERSION}.tar.gz
WORKDIR /build/colm-${COLM_VERSION}
RUN ./configure --prefix=/opt/colm.net/colm --disable-manual
-RUN make -j
+RUN make
RUN make install
WORKDIR /build
@@ -29,7 +29,7 @@ RUN gpg --verify ragel-${RAGEL_VERSION}.tar.gz.asc ragel-${RAGEL_VERSION}.tar.gz
RUN tar -zxvf ragel-${RAGEL_VERSION}.tar.gz
WORKDIR /build/ragel-${RAGEL_VERSION}
RUN ./configure --prefix=/opt/colm.net/ragel --with-colm=/opt/colm.net/colm --disable-manual
-RUN make -j
+RUN make
RUN make install
WORKDIR /build/ragel-${RAGEL_VERSION}/test
RUN ./runtests