We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2d08c commit 98d29b8Copy full SHA for 98d29b8
1 file changed
Dockerfile
@@ -1,12 +1,12 @@
1
FROM alpine:3.12 AS build
2
3
-ENV VERSION=3.1.4
+ENV SIEGE_VERSION=3.1.4
4
5
RUN apk update \
6
&& apk add curl g++ make \
7
- && curl http://download.joedog.org/siege/siege-$VERSION.tar.gz > siege-$VERSION.tar.gz \
8
- && tar -xf siege-${VERSION}.tar.gz \
9
- && cd siege-${VERSION} \
+ && curl http://download.joedog.org/siege/siege-${SIEGE_VERSION}.tar.gz > siege-${SIEGE_VERSION}.tar.gz \
+ && tar -xf siege-${SIEGE_VERSION}.tar.gz \
+ && cd siege-${SIEGE_VERSION} \
10
&& ./configure \
11
&& make install
12
0 commit comments