-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdotnet.js
53 lines (50 loc) · 1.35 KB
/
dotnet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';
// Modules
const _ = require('lodash');
// Builder
module.exports = {
name: 'dotnet',
config: {
version: '2.1',
supported: ['3.1', '2.1'],
patchesSupported: false,
command: 'tail -f /dev/null',
path: [
'/usr/local/sbin',
'/usr/local/bin',
'/usr/sbin',
'/usr/bin',
'/sbin',
'/bin',
],
port: '80',
ssl: false,
volumes: [
'/usr/local/bin',
'/usr/local/share',
'/usr/local/bundle',
],
},
parent: '_appserver',
builder: (parent, config) => class LandoDotNet extends parent {
constructor(id, options = {}) {
options = _.merge({}, config, options);
// Make sure our command is an array
if (!_.isArray(options.command)) options.command = [options.command];
options.command = options.command.join(' && ');
// Build the dotnet
const dotnet = {
image: `mcr.microsoft.com/dotnet/sdk:${options.version}`,
environment: {
PATH: options.path.join(':'),
ASPNETCORE_URLS: `http://+:${options.port}`,
},
ports: (options.command !== 'tail -f /dev/null') ? [options.port] : [],
volumes: options.volumes,
command: `/bin/sh -c "${options.command}"`,
};
// Send it downstream
super(id, options, {services: _.set({}, options.name, dotnet)});
};
},
};