mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
f8f7b55a53
Keeping the index.js inside the docker folder to avoid our tsconfig having to be changed. In addition, updated the build to copy less of the folders into our final image, since we really only needed build and node_modules. Should reduce attack surface of the container.
8 lines
95 B
JavaScript
8 lines
95 B
JavaScript
'use strict';
|
|
|
|
const unleash = require('./build');
|
|
|
|
let options = {};
|
|
|
|
unleash.start(options);
|