2021-08-20 15:05:00 -04:00
|
|
|
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/ruby/.devcontainer/base.Dockerfile
|
|
|
|
|
|
|
|
# [Choice] Ruby version: 3, 3.0, 2, 2.7, 2.6
|
|
|
|
ARG VARIANT="3.0"
|
|
|
|
FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}
|
|
|
|
|
|
|
|
# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
|
|
|
|
ARG NODE_VERSION="none"
|
|
|
|
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
|
|
|
|
|
|
|
|
# [Optional] Uncomment this section to install additional OS packages.
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
|
|
&& apt-get -y install --no-install-recommends \
|
|
|
|
mariadb-server libmariadbclient-dev \
|
|
|
|
postgresql postgresql-client postgresql-contrib libpq-dev \
|
|
|
|
redis-server memcached \
|
|
|
|
imagemagick ffmpeg mupdf mupdf-tools libvips
|
|
|
|
|
|
|
|
|
|
|
|
# [Optional] Uncomment this line to install additional gems.
|
2021-08-23 04:44:29 -04:00
|
|
|
# Add the Rails main Gemfile and install the gems. This means the gem install can be done
|
|
|
|
# during build instead of on start. When a fork or branch has different gems, we still have an
|
|
|
|
# advantage due to caching of the other gems.
|
|
|
|
RUN mkdir -p /tmp/rails
|
|
|
|
COPY Gemfile Gemfile.lock RAILS_VERSION rails.gemspec package.json yarn.lock /tmp/rails/
|
|
|
|
COPY actioncable/actioncable.gemspec /tmp/rails/actioncable/
|
|
|
|
COPY actionmailbox/actionmailbox.gemspec /tmp/rails/actionmailbox/
|
|
|
|
COPY actionmailer/actionmailer.gemspec /tmp/rails/actionmailer/
|
|
|
|
COPY actionpack/actionpack.gemspec /tmp/rails/actionpack/
|
|
|
|
COPY actiontext/actiontext.gemspec /tmp/rails/actiontext/
|
|
|
|
COPY actionview/actionview.gemspec /tmp/rails/actionview/
|
|
|
|
COPY activejob/activejob.gemspec /tmp/rails/activejob/
|
|
|
|
COPY activemodel/activemodel.gemspec /tmp/rails/activemodel/
|
|
|
|
COPY activerecord/activerecord.gemspec /tmp/rails/activerecord/
|
|
|
|
COPY activestorage/activestorage.gemspec /tmp/rails/activestorage/
|
|
|
|
COPY activesupport/activesupport.gemspec /tmp/rails/activesupport/
|
|
|
|
COPY railties/railties.gemspec /tmp/rails/railties/
|
|
|
|
RUN cd /tmp/rails \
|
|
|
|
&& bundle install \
|
|
|
|
&& yarn install \
|
|
|
|
&& rm -rf /tmp/rails
|
2021-08-20 15:05:00 -04:00
|
|
|
|
|
|
|
# [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
|