Skip to content

Commit ec1ab53

Browse files
committed
- version 0.3b, ++ fix to listenAPI to make things more robust
1 parent b73cdef commit ec1ab53

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM alpine:3.5
1+
FROM alpine:latest
22
RUN apk update
3+
RUN apk upgrade
34
RUN apk add unzip
45
RUN apk add ca-certificates
56
RUN apk add openssl
6-
RUN touch /tmp/test
77
#COPY ixgen.zip /tmp
8-
RUN wget -O /tmp/ixgen.zip https://github.com/ipcjk/ixgen/releases/download/0.3a/release.zip
8+
RUN wget -O /tmp/ixgen.zip https://github.com/ipcjk/ixgen/releases/download/0.3b/release.zip
99
RUN unzip /tmp/ixgen.zip -d /ixgen
1010
RUN rm /tmp/ixgen.zip
1111
WORKDIR /ixgen/release

ixgen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func init() {
5757
flag.Parse()
5858

5959
if version {
60-
fmt.Println("ixgen 0.3a (C) 2017 by Jörg Kost, [email protected]")
60+
fmt.Println("ixgen 0.3b (C) 2017 by Jörg Kost, [email protected]")
6161
os.Exit(0)
6262
}
6363

0 commit comments

Comments
 (0)