Skip to content
This repository has been archived by the owner on Aug 2, 2020. It is now read-only.

Commit

Permalink
Reduce container size with clean yarn (#3506)
Browse files Browse the repository at this point in the history
* Reduce container size with clean yarn

* Merge trouble
  • Loading branch information
hinaloe authored and Gargron committed Sep 30, 2017
1 parent 1df453a commit 1e1d788
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
46 changes: 46 additions & 0 deletions .yarnclean
@@ -0,0 +1,46 @@
# test directories
__tests__
test
tests
powered-test

# asset directories
docs
doc
website
images
# assets

# examples
example
examples

# code coverage directories
coverage
.nyc_output

# build scripts
Makefile
Gulpfile.js
Gruntfile.js

# configs
.tern-project
.gitattributes
.editorconfig
.*ignore
.eslintrc
.jshintrc
.flowconfig
.documentup.json
.yarn-metadata.json
.*.yml
*.yml

# misc
*.gz
*.md

# for specific ignore
!.svgo.yml

5 changes: 3 additions & 2 deletions Dockerfile
Expand Up @@ -60,11 +60,12 @@ RUN apk -U upgrade \
&& cd /mastodon \
&& rm -rf /tmp/* /var/cache/apk/*

COPY Gemfile Gemfile.lock package.json yarn.lock /mastodon/
COPY Gemfile Gemfile.lock package.json yarn.lock .yarnclean /mastodon/

RUN bundle config build.nokogiri --with-iconv-lib=/usr/local/lib --with-iconv-include=/usr/local/include \
&& bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without test development \
&& yarn --pure-lockfile
&& yarn --pure-lockfile \
&& yarn cache clean

COPY . /mastodon

Expand Down

0 comments on commit 1e1d788

Please sign in to comment.