Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump axios from 0.19.0 to 0.21.1 in /viscoll-app #26

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
52 changes: 50 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,58 @@
/.bundle

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
*/log/*
*/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore Byebug command history file.
.byebug_history

# Ignore Mac files
*.DS_Store

# Ignore Visual Studio files
.vscode

# Ignore caches
*.sass-cache

/public/swagger/

*.idea

# React app stuff

# dependencies
*/node_modules

# testing
*/coverage

# production
*/build

# documentation
styleguide

# misc
*.DS_Store

*.env.local
*.env.development.local
*.env.test.local
*.env.production.local

*npm-debug.log*
*yarn-debug.log*
*yarn-error.log*

coverage
jest_0
test.log
*.xml
!/viscoll-api/spec/fixtures/*.xml

# DIY images
viscoll-api/uploads/*
1 change: 0 additions & 1 deletion .ruby-gemset

This file was deleted.

1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

23 changes: 23 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM ubuntu:16.04

# Install tools & libs to compile everything
RUN apt-get update && \
apt-get install -y curl tzdata build-essential libssl-dev libreadline-dev wget && \
apt-get clean

# Install nodejs
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN apt-get install -y nodejs && apt-get clean

# Install ruby-build
RUN apt-get install -y git-core && apt-get clean
RUN git clone https://github.com/sstephenson/ruby-build.git && cd ruby-build && ./install.sh

# Install ruby 2.4.1
ENV CONFIGURE_OPTS --disable-install-rdoc
RUN ruby-build 2.6.4 /usr/local
RUN gem install bundler
RUN gem install tzinfo-data

# Clean up downloaded packages
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
269 changes: 0 additions & 269 deletions Gemfile.lock

This file was deleted.

Loading