This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #350 from MicrosoftDX/dev
Merge from dev for 0.2.2
- Loading branch information
Showing
116 changed files
with
6,612 additions
and
586 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
DeploymentTools/ | ||
desktop/ | ||
.vscode/ | ||
Tests/ | ||
node_modules/ | ||
Contributing.md | ||
Readme.md | ||
azuredeploy.json | ||
azuredeploy-parameters.json | ||
deploy.cmd | ||
build-docker-image.sh | ||
VorlonNodeWrapper/ | ||
client samples/ |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
# use the node argon (4.4.3) image as base | ||
FROM node:argon | ||
|
||
# Set the Vorlon.JS Docker Image maintainer | ||
MAINTAINER Julien Corioland (Microsoft, DX) | ||
|
||
# Expose port 1337 | ||
EXPOSE 1337 | ||
|
||
# Set the entry point | ||
ENTRYPOINT ["npm", "start"] | ||
|
||
# Create the application directory | ||
RUN mkdir -p /usr/src/vorlonjs | ||
|
||
# Copy the application content | ||
COPY . /usr/src/vorlonjs/ | ||
|
||
# Set app root as working directory | ||
WORKDIR /usr/src/vorlonjs | ||
|
||
# Upgrade to last NPM version | ||
RUN npm upgrade -g npm | ||
|
||
# Install gulp | ||
RUN npm install -g gulp | ||
|
||
# Run npm install | ||
RUN npm install | ||
|
||
# Run gulp | ||
RUN gulp |
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,4 +1,3 @@ | ||
*.js | ||
*.js.map | ||
*.min.js | ||
!verge.min.js | ||
|
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
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.