Skip to content

Commit

Permalink
rails/webpacker#2518 for the integrity check change. otherwise, this …
Browse files Browse the repository at this point in the history
…commit fixes a fresh clone
  • Loading branch information
JacobBHartman committed Oct 22, 2020
1 parent bc9630d commit 0d71c01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Expand Up @@ -20,11 +20,12 @@ RUN apt-get update && apt-get install --yes \

RUN gem install rails --version 6.0.3.4

RUN mkdir /cadre
WORKDIR /cadre


#RUN rails new blog
#WORKDIR /blog
COPY Gemfile /cadre/Gemfile
COPY Gemfile.lock /cadre/Gemfile.lock
RUN bundle install
COPY . /cadre

#RUN curl https://www.sqlite.org/2020/sqlite-tools-linux-x86-3330000.zip --output sqlite-tools-linux-x86-3330000.zip
#RUN unzip sqlite-tools-linux-x86-3330000.zip
Expand Down
2 changes: 1 addition & 1 deletion config/webpacker.yml
Expand Up @@ -53,7 +53,7 @@ development:
compile: true

# Verifies that correct packages and versions are installed by inspecting package.json, yarn.lock, and node_modules
check_yarn_integrity: true
check_yarn_integrity: false

# Reference: https://webpack.js.org/configuration/dev-server/
dev_server:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -7,5 +7,5 @@ services:
- "3000"
ports:
- "8001:3000"
volumes:
- .:/cadre:cached
# volumes:
# - .:/cadre:cached

0 comments on commit 0d71c01

Please sign in to comment.