-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from hmrc/DL-9447a
[DL-9447] Upgraded the dependencies for the VAT (MTD) End-to-End Serv…
- Loading branch information
Showing
21 changed files
with
1,006 additions
and
233 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,30 +1,27 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile ~/.gitignore_global | ||
|
||
# Ignore bundler config | ||
/.bundle | ||
|
||
# Ignore the build directory | ||
/build | ||
|
||
# Ignore cache | ||
/.sass-cache | ||
/.cache | ||
|
||
# Ignore .DS_store file | ||
.DS_Store | ||
|
||
Staticfile.auth | ||
|
||
/vendor | ||
/public | ||
/target | ||
/project/project | ||
/project/target | ||
logs | ||
project/project | ||
project/target | ||
target | ||
lib_managed | ||
public/ | ||
tmp | ||
.history | ||
dist | ||
/.idea | ||
/*.iml | ||
/*.ipr | ||
/out | ||
/.idea_modules | ||
/.classpath | ||
/.project | ||
/logs | ||
.idea | ||
/.bsp | ||
/RUNNING_PID | ||
/.settings | ||
*.iws | ||
node_modules/ | ||
npm-debug.log | ||
yarn-debug.log | ||
yarn-error.log | ||
/vendor | ||
/.batect | ||
/.bsp |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
16.11.0 |
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 +1 @@ | ||
2.6.3 | ||
3.1.2 |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM noonat/rbenv-nodenv | ||
|
||
# Update list of Ruby versions in rbenv | ||
RUN cd ~/.rbenv/plugins/ruby-build && git pull | ||
# Install version of Ruby that we want | ||
COPY .ruby-version /tmp | ||
RUN cd /tmp && rbenv install | ||
|
||
# Update list of Node versions in nodenv | ||
RUN cd ~/.nodenv/plugins/node-build && git pull | ||
# Install version of Node that we want | ||
COPY .node-version /tmp | ||
RUN cd /tmp && nodenv install | ||
|
||
# Make root accessible to other users, this is because the batect tasks run as the current user | ||
# but need access to rbenv and nodenv | ||
RUN chmod +x /root |
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
Oops, something went wrong.