forked from OpenNeo/impress
16 lines
789 B
Docker
16 lines
789 B
Docker
|
FROM mcr.microsoft.com/devcontainers/ruby:1-3.1-bullseye
|
||
|
|
||
|
# Default value to allow debug server to serve content over GitHub Codespace's port forwarding service
|
||
|
# The value is a comma-separated list of allowed domains
|
||
|
ENV RAILS_DEVELOPMENT_HOSTS=".githubpreview.dev,.preview.app.github.dev,.app.github.dev"
|
||
|
|
||
|
# [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
|