Commit Graph

42 Commits

Author SHA1 Message Date
Quinten
f597634a44
Typescript esm 2023-10-24 17:49:48 +02:00
MrAvox
2bd36bc2df
Added Elixir Egg (#2450)
Add: elixir
2023-09-22 20:08:48 +02:00
Shinaii
83fa92a600
Update egg-bun.json (#2466)
Update Bun: to use the right variable names
2023-09-13 17:53:08 +02:00
Quinten
abe8ed5931
cleanup 2023-08-27 11:48:11 +02:00
mratox
640ff589f1
Update egg-bun.json 2023-08-27 01:50:13 +01:00
mratox
66d0af68d8
Update egg-bun.json 2023-08-27 01:03:32 +01:00
mratox
9c31dec600
Update README.md 2023-08-27 01:01:00 +01:00
mratox
e725261626
Create README.md 2023-08-27 00:59:29 +01:00
mratox
3d8d7aacfc
Create egg-bun.json 2023-08-27 00:57:12 +01:00
Quinten
3a0712b8f9
Generic Nodejs: allow for extra node args 2023-08-18 17:14:40 +02:00
Loki
78f4e8f36b
Fix error in startup command
Changed ``if [[ "${MAIN_FILE}" == *.js ]]``
To ``if [[ "${MAIN_FILE}" == "*.js" ]]``

The *.js without quotes compared MAIN_FILE to all files in the current directory that end with .js, resulting in errors like:
```bash
:/home/container$ if [[ -d .git ]] && [[ ${AUTO_UPDATE} == "1" ]]; then git pull; fi; if [[ ! -z ${NODE_PACKAGES} ]]; then /usr/local/bin/npm install ${NODE_PACKAGES}; fi; if [[ ! -z ${UNNODE_PACKAGES} ]]; then /usr/local/bin/npm uninstall ${UNNODE_PACKAGES}; fi; if [ -f /home/container/package.json ]; then /usr/local/bin/npm install; fi; if [[ "${MAIN_FILE}" == start.js test.js ]]; then /usr/local/bin/node "/home/container/${MAIN_FILE}"; else /usr/local/bin/ts-node "${MAIN_FILE}"; fi
/entrypoint.sh: eval: line 16: syntax error in conditional expression
/entrypoint.sh: eval: line 16: syntax error near `test.js'
/entrypoint.sh: eval: line 16: `if [[ -d .git ]] && [[ ${AUTO_UPDATE} == "1" ]]; then git pull; fi; if [[ ! -z ${NODE_PACKAGES} ]]; then /usr/local/bin/npm install ${NODE_PACKAGES}; fi; if [[ ! -z ${UNNODE_PACKAGES} ]]; then /usr/local/bin/npm uninstall ${UNNODE_PACKAGES}; fi; if [ -f /home/container/package.json ]; then /usr/local/bin/npm install; fi; if [[ "${MAIN_FILE}" == start.js test.js ]]; then /usr/local/bin/node "/home/container/${MAIN_FILE}"; else /usr/local/bin/ts-node "${MAIN_FILE}"; fi'
```
because it's interpreted as ``if [[ "${MAIN_FILE}" == start.js test.js ]];``
2023-08-17 18:38:17 -07:00
Quinten
295e769a05
Generic nodejs: change installer image to nodejs 18 2023-08-13 19:34:23 +02:00
Quinten
c85a141eab
Generic nodejs: Add typescript support 2023-08-13 10:45:58 +02:00
HoleInTheSeat
71d876f7f2
Read me fix (#2396)
Fix some README's 

---------

Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com>
2023-07-30 17:33:28 +02:00
Michael (Parker) Parker
5b9e4d0736
Merge pull request #2339 from parkervcp/C#-(dotnet)
add Generic C#
2023-07-06 21:48:14 -04:00
Gabriel
284215704e
Update README.md
word "Kotin" to "Kotlin"
2023-07-02 19:55:46 -03:00
Quinten
c92bbe4112
add Generic C# 2023-07-02 19:29:51 +02:00
Quinten
dfb1ec3538
Generic-python: force install container to be debian 11 2023-06-22 14:20:16 +02:00
Dancebunny98
05608e2d6a
Update egg-node-js-generic.json (#2256)
Generic nodejs: add nodejs 19 docker image

---------

Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com>
2023-05-19 17:45:01 +02:00
Quinten
acaa89a612
Dart: add 2.18 and 2.18 image as an option 2023-02-24 17:59:32 +01:00
Quinten
1a58101b26
Merge pull request #2096 from gOOvER/genericnodejs
genric nodejs/ added npm update to installscript to prevent errors
2023-01-28 10:31:47 +01:00
Loki
a423a1c02c
Add Python 11 Yolk (#2100)
Python: Add Python 11 image
2023-01-28 08:52:10 +01:00
gOOvER
b31d7288dc added npm update to prevent errors 2023-01-27 20:19:52 +01:00
Torsten Widmann
9a6dc15a82
fix link 2023-01-14 13:19:04 +01:00
diamkil
a7c88d51ba
Revert other changed line 2022-11-28 13:24:33 -05:00
diamkil
ffbf4f3072
Update Python egg to show Python X.X instead of the full docker image 2022-11-28 13:22:58 -05:00
devnote-dev
0a0b91363c chore(generic): update generic readmes 2022-11-13 17:22:29 +00:00
Daniel Barton
72ace826b1
Also quote {{AUTO_UPDATE}} 2022-11-12 20:11:43 +08:00
Daniel Barton
8d8cc45042 Add quotes around {{PY_PACKAGES}} to prevent failure when the variable is empty 2022-11-12 20:07:44 +08:00
Torsten Widmann
350f922aa4 fix images 2022-10-24 19:54:37 +02:00
Torsten Widmann
46d3fbf223 Update egg-java.json 2022-10-24 19:21:01 +02:00
Torsten Widmann
05a05f3862 add nodejs 18 2022-10-16 13:45:38 +02:00
devnote-dev
75c6192f98 feat(generic): update generics readme 2022-10-09 20:40:10 +01:00
devnote-dev
f87a02171b feat(generic): add dart-lang egg 2022-10-09 20:35:09 +01:00
CDE90
02982ec439
Re-order rust versions 2022-10-01 18:38:21 +01:00
Michael Parker
1020f582bc add mongodb 6 egg
add a separate modgo 6 egg. This uses the new mongosh tool that replaces the mongo application.
2022-09-27 09:07:39 -04:00
Michael (Parker) Parker
8ce0fd0d46
Update egg-golang-generic.json 2022-09-23 12:59:25 -04:00
Michael (Parker) Parker
ed84bf8cff
Update README.md 2022-09-22 15:49:56 -04:00
Michael (Parker) Parker
33cc7f6e3b
Update README.md 2022-09-22 15:49:22 -04:00
Michael (Parker) Parker
fd4680c2f5
Delete egg-node-js-generic.json~HEAD 2022-09-22 15:44:11 -04:00
Michael Parker
653cba504a update golang image 2022-09-19 08:42:12 -04:00
Michael Parker
d93502b2a1 Move generic eggs 2022-09-19 08:39:37 -04:00