- Rename base-cli folder to base (#3255)
- Rename lib-typescript folder to lib - Update docker image eclipse/che-lib-typescript to be eclipse/che-lib Change-Id: I878b52853a424f14cdec74074055d52dc8e198fd Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>6.19.x
parent
34279b1813
commit
a5d0a5e242
|
|
@ -10,6 +10,6 @@
|
|||
# use:
|
||||
# docker run -v /var/run/docker.sock:/var/run/docker.sock eclipse/che-action [command]
|
||||
|
||||
FROM eclipse/che-lib-typescript:nightly
|
||||
FROM eclipse/che-lib:nightly
|
||||
|
||||
ENTRYPOINT ["node", "/che-lib/index.js", "che-action"]
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ set -u
|
|||
init
|
||||
|
||||
# loop on all libraries first
|
||||
for directory in lib-*/ ; do
|
||||
for directory in lib*/ ; do
|
||||
if [[ -e ${directory}/build.sh ]] ; then
|
||||
echo "Call buid.sh from ${directory}"
|
||||
${directory}build.sh "$@"
|
||||
|
|
|
|||
|
|
@ -10,6 +10,6 @@
|
|||
# use:
|
||||
# docker run -v /var/run/docker.sock:/var/run/docker.sock eclipse/che-dir [command]
|
||||
|
||||
FROM eclipse/che-lib-typescript:nightly
|
||||
FROM eclipse/che-lib:nightly
|
||||
|
||||
ENTRYPOINT ["node", "/che-lib/index.js", "che-dir"]
|
||||
|
|
|
|||
|
|
@ -4,9 +4,11 @@
|
|||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Codenvy, S.A. - Initial implementation
|
||||
# build:
|
||||
# docker build -t eclipse/che-lib .
|
||||
#
|
||||
# use:
|
||||
# docker run -v /var/run/docker.sock:/var/run/docker.sock eclipse/che-lib [command]
|
||||
|
||||
FROM mhart/alpine-node:6
|
||||
|
||||
|
|
@ -29,4 +31,3 @@ RUN cd /lib-typescript/ && npm install \
|
|||
&& cd /runtime && npm install && /lib-typescript/node_modules/.bin/tsc --project /lib-typescript/ \
|
||||
&& mv /lib-typescript/lib /che-lib && cd /lib-typescript/src && find . -name "*.properties" -exec install -D {} /che-lib/{} \;\
|
||||
&& rm -rf /lib-typescript && mv /runtime/node_modules /che-lib && rm -rf /runtime
|
||||
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
IMAGE_NAME="eclipse/che-lib-typescript"
|
||||
IMAGE_NAME="eclipse/che-lib"
|
||||
. $(cd "$(dirname "$0")"; pwd)/../build.include
|
||||
|
||||
DIR=$(cd "$(dirname "$0")"; pwd)
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "che-typescript",
|
||||
"name": "che-cli-library",
|
||||
"version": "1.0.0",
|
||||
"description": "TypeScript library used in dockerfiles",
|
||||
"description": "CLI library used in dockerfiles",
|
||||
"main": "lib/index.js",
|
||||
"author": "Florent Benoit",
|
||||
"license": "EPL-1.0",
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue