orats 5.0.1 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/orats/templates/base/Dockerfile +7 -7
- data/lib/orats/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d7e5aa5200d6a82f91f806a1b51e71686d0b2fd
|
4
|
+
data.tar.gz: 97bcc8ad2a1d4ec87a6e70766fb4235f64105b95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ea921eeeaee98d57d92f785539b9da667dda72a31637b2c7a670785c55a25c6b53b7b4fa8cff2fa075aa334b51290f909a4f082e9838083c7bdb1ed986b796b
|
7
|
+
data.tar.gz: e2c5a730adaa3e5cba7d8e65f4f86e5d7828f555392c7058400830a23436434cea20149617faa7c3a985c632761cfc56f0cdb75b225ce609a6c4f92c749b14ef
|
data/CHANGELOG.md
CHANGED
@@ -24,8 +24,8 @@ RUN apt-get update && apt-get install -qq -y --no-install-recommends \
|
|
24
24
|
# packages to ensure that we can compile assets (nodejs) and
|
25
25
|
# communicate with PostgreSQL (libpq-dev).
|
26
26
|
|
27
|
-
ENV INSTALL_PATH /
|
28
|
-
# The name of the application is
|
27
|
+
ENV INSTALL_PATH /orats_base
|
28
|
+
# The name of the application is orats_base and while there
|
29
29
|
# is no standard on where your project should live inside of the Docker
|
30
30
|
# image, I like to put it in the root of the image and name it
|
31
31
|
# after the project.
|
@@ -42,8 +42,8 @@ RUN mkdir -p $INSTALL_PATH
|
|
42
42
|
|
43
43
|
WORKDIR $INSTALL_PATH
|
44
44
|
# We're going to be executing a number of commands below, and
|
45
|
-
# having to CD into the /
|
46
|
-
# lame, so instead we can set the WORKDIR to be /
|
45
|
+
# having to CD into the /orats_base folder every time would be
|
46
|
+
# lame, so instead we can set the WORKDIR to be /orats_base.
|
47
47
|
#
|
48
48
|
# By doing this, Docker will be smart enough to execute all
|
49
49
|
# future commands from within this directory.
|
@@ -51,9 +51,9 @@ WORKDIR $INSTALL_PATH
|
|
51
51
|
COPY Gemfile Gemfile.lock ./
|
52
52
|
# This is going to copy in the Gemfile and Gemfile.lock from our
|
53
53
|
# work station at a path relative to the Dockerfile to the
|
54
|
-
#
|
54
|
+
# orats_base/ path inside of the Docker image.
|
55
55
|
#
|
56
|
-
# It copies it to /
|
56
|
+
# It copies it to /orats_base because of the WORKDIR being set.
|
57
57
|
#
|
58
58
|
# We copy in our Gemfile before the main app because Docker is
|
59
59
|
# smart enough to cache "layers" when you build a Docker image.
|
@@ -75,7 +75,7 @@ RUN bundle install --binstubs
|
|
75
75
|
COPY . .
|
76
76
|
# This might look a bit alien but it's copying in everything from
|
77
77
|
# the current directory relative to the Dockerfile, over to the
|
78
|
-
# /
|
78
|
+
# /orats_base folder inside of the Docker image.
|
79
79
|
#
|
80
80
|
# We can get away with using the . for the second argument because
|
81
81
|
# this is how the unix command cp (copy) works. It stands for the
|
data/lib/orats/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orats
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Janetakis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|