mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-25 01:56:30 +08:00
99fd891d76
* feature: add csharp sdk to dockerfile * Update docker-compose.yml * Update Dockerfile * remove env file --------- Co-authored-by: Yudong Jin <krahets@163.com>
13 lines
341 B
YAML
13 lines
341 B
YAML
version: '3.8'
|
|
services:
|
|
hello-algo-code:
|
|
build:
|
|
context: .
|
|
args:
|
|
# 设置需要安装的语言,使用空格隔开
|
|
# Set the languages to be installed, separated by spaces
|
|
LANGS: "python cpp csharp"
|
|
image: hello-algo-code
|
|
container_name: hello-algo-code
|
|
stdin_open: true
|
|
tty: true
|