Skip to content

Commit

Permalink
- version 0.3b, ++ fix to listenAPI to make things more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
ipcjk committed Jul 6, 2017
1 parent b73cdef commit ec1ab53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM alpine:3.5
FROM alpine:latest
RUN apk update
RUN apk upgrade
RUN apk add unzip
RUN apk add ca-certificates
RUN apk add openssl
RUN touch /tmp/test
#COPY ixgen.zip /tmp
RUN wget -O /tmp/ixgen.zip https://github.com/ipcjk/ixgen/releases/download/0.3a/release.zip
RUN wget -O /tmp/ixgen.zip https://github.com/ipcjk/ixgen/releases/download/0.3b/release.zip
RUN unzip /tmp/ixgen.zip -d /ixgen
RUN rm /tmp/ixgen.zip
WORKDIR /ixgen/release
Expand Down
2 changes: 1 addition & 1 deletion ixgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func init() {
flag.Parse()

if version {
fmt.Println("ixgen 0.3a (C) 2017 by Jörg Kost, joerg.kost@gmx.com")
fmt.Println("ixgen 0.3b (C) 2017 by Jörg Kost, joerg.kost@gmx.com")
os.Exit(0)
}

Expand Down

0 comments on commit ec1ab53

Please sign in to comment.