Sha256: c8370fd523919138aa1e9712a28185b46c16a82533be6b878127d12b680b2f16

Contents?: true

Size: 796 Bytes

Versions: 8

Compression:

Stored size: 796 Bytes

Contents

ARG VARIANT=2
FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}

# Install Rails
RUN gem install rails webdrivers 

# Install a version of Node.js using nvm for dynamic front end content
ARG NODE_VERSION="lts/*"
RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
#     && apt-get -y install --no-install-recommends <your-package-list-here>

# [Optional] Uncomment this line to install additional gems.
# RUN gem install <your-gem-names-here>

# [Optional] Uncomment this line to install global node packages.
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
thecore_settings-2.0.9 .devcontainer/Dockerfile
thecore_settings-2.0.8 .devcontainer/Dockerfile
thecore_settings-2.0.7 .devcontainer/Dockerfile
thecore_settings-2.0.6 .devcontainer/Dockerfile
thecore_settings-2.0.5 .devcontainer/Dockerfile
thecore_settings-2.0.4 .devcontainer/Dockerfile
thecore_settings-2.0.3 .devcontainer/Dockerfile
thecore_settings-2.0.2 .devcontainer/Dockerfile