-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marcus Cobden
committed
Sep 24, 2018
1 parent
3f66348
commit 55709f4
Showing
4 changed files
with
58 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Changes to this file will not take effect in CI | ||
# until the image version in the CI config is updated. See | ||
# https://github.com/weaveworks/scope/blob/master/.circleci/config.yml#L11 | ||
FROM node:8.11 | ||
WORKDIR /home/weave | ||
COPY package.json yarn.lock /home/weave/ | ||
ENV NPM_CONFIG_LOGLEVEL=warn NPM_CONFIG_PROGRESS=false | ||
RUN yarn --pure-lockfile | ||
COPY webpack.local.config.js webpack.production.config.js server.js .babelrc .eslintrc .eslintignore .stylelintrc .sass-lint.yml /home/weave/ | ||
ENV NPM_CONFIG_LOGLEVEL=warn | ||
ENV NPM_CONFIG_PROGRESS=false | ||
ENV XDG_CACHE_HOME=/home/weave/scope/.cache | ||
WORKDIR /home/weave/scope/client | ||
|
||
ARG revision | ||
LABEL maintainer="Weaveworks <help@weave.works>" \ | ||
org.opencontainers.image.title="client" \ | ||
org.opencontainers.image.title="scope-ui-build" \ | ||
org.opencontainers.image.source="https://github.com/weaveworks/scope" \ | ||
org.opencontainers.image.revision="${revision}" \ | ||
org.opencontainers.image.vendor="Weaveworks" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters