Skip to content

Commit b16c05e

Browse files
committed
blimp
1 parent 4faa4b3 commit b16c05e

File tree

85 files changed

+80
-2387
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+80
-2387
lines changed

10.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/oryx/node-10.1:20190516.1
1+
FROM mcr.microsoft.com/oryx/node:10.1-20190708.2
22
LABEL maintainer="Azure App Services Container Images <appsvc-images@microsoft.com>"
33

44
RUN echo "ipv6" >> /etc/modules

10.1/startup/default-static-site.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var express = require('express');
22
var server = express();
33
var options = {
4-
index: 'hostingstart.html'
4+
index: ['index.html','hostingstart.html']
55
};
66
server.use('/', express.static('/opt/startup', options));
77
server.listen(process.env.PORT);

10.1/startup/generateStartupCommand.js

Lines changed: 0 additions & 176 deletions
This file was deleted.

10.1/startup/init_container.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ sed -i "s/SSH_PORT/$SSH_PORT/g" /etc/ssh/sshd_config
2929
STARTUP_COMMAND_PATH="/opt/startup/startup.sh"
3030
ORYX_ARGS="-appPath /home/site/wwwroot -output $STARTUP_COMMAND_PATH -usePM2 -defaultApp=/opt/startup/default-static-site.js -userStartupCommand '$@'"
3131

32-
if [ "$APPSVC_REMOTE_DEBUGGING" = "TRUE" ]; then
32+
if [ $APPSVC_REMOTE_DEBUGGING == "TRUE" ]; then
3333
ORYX_ARGS="-remoteDebug -debugPort $APPSVC_TUNNEL_PORT $ORYX_ARGS"
34-
elif [ "$APPSVC_REMOTE_DEBUGGING_BREAK" = "TRUE" ]; then
34+
elif [ "$APPSVC_REMOTE_DEBUGGING_BREAK" == "TRUE" ]; then
3535
ORYX_ARGS="-remoteDebugBrk -debugPort $APPSVC_TUNNEL_PORT $ORYX_ARGS"
3636
fi
3737

10.1/startup/node-wrapper.sh

Lines changed: 0 additions & 55 deletions
This file was deleted.

10.10/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
FROM mcr.microsoft.com/oryx/node-10.10:20190516.1
1+
FROM mcr.microsoft.com/oryx/node:10.10-20190708.2
32
LABEL maintainer="Azure App Services Container Images <appsvc-images@microsoft.com>"
43

54
RUN echo "ipv6" >> /etc/modules

10.10/startup/default-static-site.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var express = require('express');
22
var server = express();
33
var options = {
4-
index: 'hostingstart.html'
4+
index: ['index.html','hostingstart.html']
55
};
66
server.use('/', express.static('/opt/startup', options));
77
server.listen(process.env.PORT);

0 commit comments

Comments
 (0)