-
-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/react' into develop
- Loading branch information
Showing
319 changed files
with
87,655 additions
and
35,706 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"presets": ["@babel/react", "@babel/env"] | ||
"presets": ["@babel/react", "@babel/env"], | ||
"plugins": [["@babel/plugin-proposal-decorators", {}], ["@babel/plugin-proposal-class-properties", {}]] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM node:10.10-alpine | ||
|
||
RUN mkdir -p /usr/src/trudesk | ||
WORKDIR /usr/src/trudesk | ||
|
||
COPY . /usr/src/trudesk | ||
|
||
RUN apk add --no-cache --update bash make gcc g++ python mongodb-tools | ||
|
||
RUN npm install -g yarn && \ | ||
yarn install --production=false --prefer-offline && \ | ||
npm rebuild bcrypt node-sass --build-from-source && \ | ||
yarn run build && \ | ||
yarn install --production --prefer-offline && \ | ||
apk del make gcc g++ python | ||
|
||
EXPOSE 8118 | ||
|
||
CMD [ "/bin/bash", "/usr/src/trudesk/startup.sh" ] |
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
Oops, something went wrong.