Skip to content

Instantly share code, notes, and snippets.

@araker
Last active March 1, 2018 15:57
Show Gist options
  • Save araker/3b106ea9bd324edc9084388ec0346851 to your computer and use it in GitHub Desktop.
Save araker/3b106ea9bd324edc9084388ec0346851 to your computer and use it in GitHub Desktop.
docker image for fakes3 based on alpine
FROM alpine:latest
RUN apk --update add ruby ruby-dev ruby-rdoc ruby-irb ruby-json ruby-rake && gem install fakes3
RUN mkdir -p /fakes3_root
ENTRYPOINT ["/usr/bin/fakes3"]
CMD ["-r", "/fakes3_root", "-p", "4569"]
EXPOSE 4569
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment