Skip to content

Commit

Permalink
missing dependencies after changes in development enviroment (#1215)
Browse files Browse the repository at this point in the history
* Fixed missing dependencies after changes in development enviroment

* Removed unused build files

* ignore build directory
  • Loading branch information
glaubervila authored Jan 27, 2020
1 parent 56f4ae7 commit 9dfe98b
Show file tree
Hide file tree
Showing 7,282 changed files with 5 additions and 549,401 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bootstrap.json
/build
/build/development/
/build/temp/
/build/*/*/cache.appcache
Expand Down
6 changes: 4 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,30 @@ COPY ./.sencha /code/.sencha
COPY ./workspace.json /code/workspace.json
COPY ./packages /code/packages


# Build Sky
COPY ./sky /code/sky
WORKDIR /code/sky
RUN /opt/Sencha/sencha app build production
RUN cp -r /code/packages/local/visiomatic/src/visiomatic/dist /code/build/production/Sky/packages/local/visiomatic/src/visiomatic/

# Build Target
COPY ./target /code/target
WORKDIR /code/target
RUN /opt/Sencha/sencha app build production
RUN cp -r /code/packages/local/visiomatic/src/visiomatic/dist /code/build/production/Target/packages/local/visiomatic/src/visiomatic/

# Build Explorer
COPY ./explorer /code/explorer
WORKDIR /code/explorer
RUN /opt/Sencha/sencha app build production
RUN cp -r /code/packages/local/visiomatic/src/visiomatic/dist /code/build/production/Explorer/packages/local/visiomatic/src/visiomatic/

# Build Userquery
COPY ./userquery /code/userquery
WORKDIR /code/userquery
RUN /opt/Sencha/sencha app build production



# Build ReactJS Apps
FROM node:10-alpine as react_apps
WORKDIR /app
Expand Down
Loading

0 comments on commit 9dfe98b

Please sign in to comment.