Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Updated image to gophish 0.1.2
Browse files Browse the repository at this point in the history
For real this time.
  • Loading branch information
Matteo Guglielmetti committed Mar 8, 2016
1 parent 4ffca23 commit 80d2876
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@ MAINTAINER Matteo Guglielmetti <[email protected]>

RUN apt-get update && \
apt-get install --no-install-recommends -y \
unzip \
ca-certificates \
wget && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

WORKDIR /opt
RUN wget -nv https://github.com/gophish/gophish/releases/download/v0.1.1/gophish_linux_64bit.tar.gz && \
tar -xf gophish_linux_64bit.tar.gz && \
rm -f gophish_linux_64bit.tar.gz
RUN wget -nv https://github.com/gophish/gophish/releases/download/v0.1.2/gophish_linux_64bit.zip && \
unzip gophish_linux_64bit.zip && \
rm -f gophish_linux_64bit.zip

WORKDIR /opt/gophish_linux_amd64
RUN sed -i "s|127.0.0.1|0.0.0.0|g" config.json
WORKDIR /opt/gophish_linux_64bit
RUN sed -i "s|127.0.0.1|0.0.0.0|g" config.json && \
chmod +x gophish

EXPOSE 3333 80
ENTRYPOINT ["./gophish"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

This is a quick way to deploy a [gophish](https://github.com/gophish/gophish) installation on your local machine.

The version running is 0.1.1 on the official Debian Jessie container. Latest stable image version is 0.5.
The version running is 0.1.2 on the official Debian Jessie container. Latest stable image version is 0.6.

## Usage

Expand Down

0 comments on commit 80d2876

Please sign in to comment.