Skip to content

Instantly share code, notes, and snippets.

@TheDanishDynamo
Last active February 16, 2020 19:41
Show Gist options
  • Save TheDanishDynamo/aa16294f22ee8addf84683d2b66c5d74 to your computer and use it in GitHub Desktop.
Save TheDanishDynamo/aa16294f22ee8addf84683d2b66c5d74 to your computer and use it in GitHub Desktop.
FROM alpine:latest
LABEL maintainer="docker+rbnix@code-sharp.com"
RUN apk updat
RUN apk upgrade
RUN apk add ruby ruby-io-console ruby-bundler bash
RUN gem install minitest
# Clean APK cache to reduce image size
RUN rm -rf /var/cache/apk/*
WORKDIR /root
# to run this
# * * * * nix:
# $ docker run -it -v $(pwd):/root rbnix
# * * * * Windows:
# \> docker run -it -v %CD%:/root rbnix
# to configure excersism (get your token at exercism.io)
# $ ./exercism-cli/exercism configure --token=************** -w /root
@TheDanishDynamo
Copy link
Author

Next steps is step by step debugging https://stackify.com/ruby-debugger-using-visual-studio-code/
Also, make similar container for P****n

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment