-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
221 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,6 @@ | ||
# [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster | ||
ARG VARIANT=2-bullseye | ||
FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT} | ||
|
||
# Install Rails | ||
RUN gem install rails webdrivers | ||
|
||
# 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" | ||
|
||
# [Choice] Node.js version: lts/*, 16, 14, 12, 10 | ||
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 | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y imagemagick git-flow | ||
|
||
WORKDIR /usr/local | ||
ARG RUBY_VERSION=3.2 | ||
ARG REDMINE_VERSION=master | ||
RUN git clone https://github.com/redmine/redmine.git -b ${REDMINE_VERSION} | ||
WORKDIR /usr/local/redmine | ||
COPY .devcontainer/database.yml /usr/local/redmine/config/database.yml | ||
FROM haru/redmine_devcontainer:${REDMINE_VERSION}-ruby${RUBY_VERSION} | ||
COPY .devcontainer/post-create.sh /post-create.sh | ||
|
||
RUN rm -rf .git | ||
# RUN echo "gem 'ruby-debug-ide'" >> Gemfile | ||
RUN echo "gem 'debug'" >> Gemfile | ||
RUN echo "gem 'rufo'" >> Gemfile | ||
ENV DB=sqlite3 | ||
RUN bundle install | ||
RUN bundle exec rake db:migrate | ||
RUN bundle exec rake db:migrate RAILS_ENV=test | ||
COPY .devcontainer/launch.json /usr/local/redmine/.vscode/launch.json | ||
RUN chown -R vscode . | ||
|
||
COPY .devcontainer/post-create.sh /post-create.sh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Gemfile | ||
coverage | ||
.DS_Store | ||
.DS_Store | ||
Gemfile.lock |
Oops, something went wrong.