My solutions to 2018's advent of code
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

1234567891011121314
  1. #!/bin/bash
  2. IMAGE=csmith/aoc-2018-06
  3. docker image inspect $IMAGE >/dev/null 2>&1
  4. if [ $? -ne 0 ]
  5. then
  6. echo "One time setup: building docker image..."
  7. cd docker
  8. docker build . -t $IMAGE
  9. cd ..
  10. fi
  11. docker run --rm -it -v $(pwd):/code $IMAGE /entrypoint.sh $@