Skip to content

Commit 37e6eee

Browse files
authored
Merge pull request #48 from Cryptophobia/master
chore(Dockerfile): some updates to Dockerfile
2 parents 3f9dc46 + 29e3c65 commit 37e6eee

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

rootfs/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ RUN set -x && \
2121
./configure \
2222
--prefix="$PREFIX" \
2323
--enable-silent-rules \
24-
--enable-static=no \
2524
--disable-doxygen-doc \
2625
--disable-examples \
2726
--disable-dependency-tracking && \
@@ -31,7 +30,7 @@ RUN set -x && \
3130
unicode.mapping \
3231
modsecurity.conf-recommended
3332

34-
FROM hephy/base:v0.3.6 as openssl
33+
FROM hephy/base:v0.4.0 as openssl
3534

3635
COPY /bin /bin
3736
WORKDIR /tmp/build
@@ -59,7 +58,7 @@ RUN set -x && \
5958
make -j`nproc` && \
6059
make install_sw
6160

62-
FROM hephy/base:v0.3.6
61+
FROM hephy/base:v0.4.0
6362

6463
RUN adduser --system \
6564
--shell /bin/bash \

rootfs/bin/get_src

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env bash
1+
#!/bin/sh
2+
set -e
23

34
hash="$1"
45
url="$2"

rootfs/bin/get_src_file

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env bash
1+
#!/bin/sh
2+
set -e
23

34
hash="$1"
45
url="$2"

rootfs/bin/get_src_gpg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env bash
1+
#!/bin/sh
2+
set -e
23

34
key="$1"
45
url="$2"

0 commit comments

Comments
 (0)