diff options
author | silverwind <me@silverwind.io> | 2020-03-03 20:51:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 13:51:11 -0600 |
commit | fa6ea60c556eeaaba3f90ef8ccb1c68b1b568d01 (patch) | |
tree | af81d04853d6c8d1c3d132263f2c1f72b19eb356 /Dockerfile | |
parent | aa4a297c164b7fc6df6efe0666e119f904f148f3 (diff) | |
download | gitea-fa6ea60c556eeaaba3f90ef8ccb1c68b1b568d01.tar.gz gitea-fa6ea60c556eeaaba3f90ef8ccb1c68b1b568d01.zip |
Frontend build improvements, fix Fomantic build (#10576)
- add package-lock.json to webpack/fomantic prereqs making them always rebuild when dependencies change.
- remove FOMANTIC_EVIDENCE. It seemed better to just track a few output files instead.
- delete fomantic output files before build to prevent possible bugs in fomantic's build.
- resolve WEBPACK_SOURCES only once for performance
- reorder variables for clarity
- use clean-all in Dockerfile
- detect busybox for find syntax
Fixes: https://github.com/go-gitea/gitea/issues/10569
Fixes: https://github.com/go-gitea/gitea/issues/10565
Fixes: https://github.com/go-gitea/gitea/issues/10570
Fixes: https://github.com/go-gitea/gitea/issues/10568
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index bc8ac4f4be..141d6c6034 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea #Checkout version if set RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ - && make clean build + && make clean-all build FROM alpine:3.11 LABEL maintainer="maintainers@gitea.io" |