-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
what the FUCK are these system requirements
- Loading branch information
1 parent
b9ca6fb
commit d6857e0
Showing
3 changed files
with
14 additions
and
12 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,14 +1,23 @@ | ||
ARG RUBY_VERSION=2.4.0 | ||
ARG RUBY_VERSION=2.4.10 | ||
ARG NODE_VERSION=10.16.0 | ||
|
||
FROM ruby:${RUBY_VERSION} | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
|
||
RUN bundle install | ||
RUN gem install bundler -v 2.3.27 \ | ||
&& bundle install | ||
|
||
RUN apt-get -y update \ | ||
&& apt-get upgrade \ | ||
&& apt-get install -y n \ | ||
&& apt-get -y upgrade | ||
|
||
# I hate this. | ||
|
||
RUN apt-get -y install npm | ||
|
||
RUN npm cache clean -f | ||
|
||
RUN npm install -g n \ | ||
&& n 10.16.0 |
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