From 1a736492f782db6bc36de076d9cdf12c019d2af5 Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Sat, 24 Feb 2024 15:52:00 -0500 Subject: [PATCH] replace 4 spaces with tabs in Dockerfile --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a74032..58337e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,12 +11,12 @@ FROM ubuntu:18.04 AS build # * Install build dependencies RUN apt-get update RUN apt-get install -y \ - curl \ + curl \ build-essential \ libffi-dev \ pkg-config \ libssl-dev \ - libpcre3 \ + libpcre3 \ libpcre3-dev \ zlib1g-dev @@ -33,11 +33,11 @@ ARG nginx_version nginx_dir RUN curl -fSL http://nginx.org/download/nginx-${nginx_version}.tar.gz | tar xz -C /tmp/ WORKDIR /tmp/nginx-${nginx_version} RUN ./configure \ - --prefix=${nginx_dir} \ - --with-http_ssl_module \ - --with-openssl=/tmp/openssl-${openssl_version} \ - --with-openssl-opt="enable-weak-ssl-ciphers" \ - --with-pcre + --prefix=${nginx_dir} \ + --with-http_ssl_module \ + --with-openssl=/tmp/openssl-${openssl_version} \ + --with-openssl-opt="enable-weak-ssl-ciphers" \ + --with-pcre RUN make -j$(nproc) RUN make install