Sha256: 4e77e53a5f49af553dd610e95d8c4c57e2f20304b0e1bfa20eb3b4306977bcc5
Contents?: true
Size: 676 Bytes
Versions: 4
Compression:
Stored size: 676 Bytes
Contents
FROM ruby:3 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.14.0 | .devcontainer/Dockerfile |
rget-4.13.2 | .devcontainer/Dockerfile |
rget-4.13.1 | .devcontainer/Dockerfile |
rget-4.13.0 | .devcontainer/Dockerfile |