Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hisorange committed Nov 14, 2021
1 parent 5f0f95d commit 0f8f3b3
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
44 changes: 44 additions & 0 deletions .yarnclean
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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
appveyor.yml
circle.yml
codeship-services.yml
codeship-steps.yml
wercker.yml
.tern-project
.gitattributes
.editorconfig
.*ignore
.eslintrc
.jshintrc
.flowconfig
.documentup.json
.yarn-metadata.json
.travis.yml

# misc
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ RUN ["yarn", "build"]
FROM node:16-alpine AS production
WORKDIR /srv

COPY --from=builder /temp/.yarnclean .yarnclean
COPY --from=builder /temp/license license
COPY --from=builder /temp/package.json package.json
COPY --from=builder /temp/yarn.lock yarn.lock
COPY --from=builder /temp/build build
COPY --from=builder /temp/storage storage
COPY --from=builder /temp/template template
COPY --from=builder /temp/config config
COPY --from=builder /temp/assets assets
COPY --from=builder /temp/docs docs

ENV NODE_ENV=production
ENV PORT=3000
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Docker Pulls](https://img.shields.io/docker/pulls/artgenio/core)
![Docker Image Version](https://img.shields.io/docker/v/artgenio/core)
![GitHub last commit](https://img.shields.io/github/last-commit/artgenio/core)
![License](https://img.shields.io/github/license/artgenio/core)
[![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/)

### Get Started!

Expand Down

0 comments on commit 0f8f3b3

Please sign in to comment.