{"id":26045819,"url":"https://github.com/rk0cc/cs3103pico","last_synced_at":"2026-04-24T21:32:04.389Z","repository":{"id":280839414,"uuid":"943348580","full_name":"rk0cc/cs3103pico","owner":"rk0cc","description":"Alpine Linux based Docker image for running CS3103","archived":false,"fork":false,"pushed_at":"2025-10-22T13:49:39.000Z","size":60,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-02T07:52:42.490Z","etag":null,"topics":["alpine-linux","cityu","cityuhk","cityuniversityofhongkong","docker","python2"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/repository/docker/rk0d/cs3103pico","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rk0cc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-05T15:07:43.000Z","updated_at":"2025-10-22T13:49:43.000Z","dependencies_parsed_at":"2025-05-25T16:24:50.730Z","dependency_job_id":"a1d187e8-1e2b-4597-ac4e-2cf3ee853b0e","html_url":"https://github.com/rk0cc/cs3103pico","commit_stats":null,"previous_names":["rk0cc/cs3103pico"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rk0cc/cs3103pico","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rk0cc%2Fcs3103pico","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rk0cc%2Fcs3103pico/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rk0cc%2Fcs3103pico/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rk0cc%2Fcs3103pico/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rk0cc","download_url":"https://codeload.github.com/rk0cc/cs3103pico/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rk0cc%2Fcs3103pico/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32241616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alpine-linux","cityu","cityuhk","cityuniversityofhongkong","docker","python2"],"created_at":"2025-03-07T20:48:42.020Z","updated_at":"2026-04-24T21:32:04.384Z","avatar_url":"https://github.com/rk0cc.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dockerfile for completing CS3103 tutorials\n\nAlpine Linux based images to provide all necessaries environment for completing CS3103 tutorial locally.\n\n\u003e [!WARNING]\n\u003e This Docker image is designed for compiling and running programs in Linux environment locally. The executables are **incompatible** to run in CS Gateway server.\n\u003e If you wish submitting executables for assessments, it is preferred to use the gateway server instead.\n\n## Available tags\n\n* `pre`: Synchronize content from repository and push to Docker Hub if the image built successfully.\n* `\u003cYYYY\u003e\u003cMM\u003e`, `latest`: Images built based on `stable` branch content for each quarters of the year where `YYYY` and `MM` refers as full year and month in digits accordingly. `latest` tag is referring to the most recent released tag of `\u003cYYYY\u003e\u003cMM\u003e`.\n    * The images are pushed to Docker Hub in January, April, July and October.\n\n### Postfix tags (`\u003ctag name\u003e-\u003cpostfix\u003e`)\n\n* (No postfix): Basic variant that it only offers installed dependencies.\n* `-pip`: It offers `pip2` command for installing Python 2 packages\n    * It is not recommended to use `pip2` in Python 2 since it has reached end of life at 2020. Therefore, avoid use this postfix if the tutorials or assignments do not require using additional packages.\n* `-powershell`: Replace default shell of this image from `zsh` to `pwsh`.\n* `-manless`: Excluding manpage and packages' documentation packages to minimize image size.\n\nEach image tags delivers the latest dependencies updates.\n\n## Installed dependencies\n\n(Exclude all bundled dependencies from Alpine Linux)\n\n* Python 2\n* Python 3 (Since `202507`)\n    * `pip3` included\n* GNU compilers\n    * `gcc`\n    * `g++`\n    * `make` and `automake`\n* (De)compression\n    * `xz`\n    * `bzip2`\n    * `zip` and `unzip`\n* `mc`\n* `nano`\n* `htop`\n* `zsh` (except `-powershell`)\n    * Default terminal when running in container.\n* `man`\n    * Alpine Linux does not bundled with documentations when installing packages. Therefore, to get documentations from installed packages, please run `/opt/fetch_manpage.sh` afterward.\n    * It does not included in `-manless` tag, as well as `/opt/fetch_manpage.sh` is absented.\n* `valgrind` (Since `202504`)\n* `gdb` (Since `202507`)\n\n## Usage\n\nSimply run this command after the image pulled:\n\n```bash\ndocker run -it --name \"(Container name)\" --mount type=bind,src=/path/to/CS3103/src,dst=/mnt/CS3103 rk0d/cs3103pico:latest\n```\n\nThen, you can access any CS3103 source codes in `/mnt/CS3103` directory.\n\n## License\n\nAGPL 3\n\n## Links\n\n* [GitHub repository](https://github.com/rk0cc/cs3103pico)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frk0cc%2Fcs3103pico","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frk0cc%2Fcs3103pico","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frk0cc%2Fcs3103pico/lists"}