Sha256: 66c9da2a7417ca9a82c544ff1e8792f33d267e09c310f9603597e895c94b3ede

Contents?: true

Size: 676 Bytes

Versions: 4

Compression:

Stored size: 676 Bytes

Contents

FROM ruby:2
ENV USER vscode
LABEL maintainer "@tdtds <t@tdtds.jp>"
RUN apt-get -y update && apt-get -y install ffmpeg && \
    curl -sLo /usr/local/bin/youtube-dl http://www.yt-dl.org/downloads/latest/youtube-dl && \
    chmod +x /usr/local/bin/youtube-dl && \
    useradd -u 1000 -m $USER && chsh -s /bin/bash $USER
USER $USER
RUN bundle config set path vendor/bundle && \
    bundle config set with development:test && \
    echo 'git config --global --unset core.editor' >> /home/$USER/.bashrc && \
    echo 'git config --global --unset core.sshCommand' >> /home/$USER/.bashrc && \
    echo 'git ls-remote -q > /dev/null' >> /home/$USER/.bashrc
CMD [ "sleep", "infinity" ]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rget-4.12.0 .devcontainer/Dockerfile
rget-4.11.0 .devcontainer/Dockerfile
rget-4.10.0 .devcontainer/Dockerfile
rget-4.9.3 .devcontainer/Dockerfile