Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@
# docker run --rm=true "catphish:${TAG}" --Domain ring0labs.com --All
FROM ruby:2.3.4-alpine

RUN apk --no-cache add g++ make
RUN gem install unf_ext --no-ri --no-rdoc

# Install it into the /opt/ dir
WORKDIR /opt/catphish
ADD * /opt/catphish/
ADD Gemfile \
catphish.rb /opt/catphish/
RUN bundle install

# Use the script as the entrypoint so we can supply args directly to the docker daemon
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ $ docker run \
--rm=true \
"catphish:${TAG}" \
--Domain ring0labs.com \
--All
generate --All
```

# In Action
Expand Down