https://github.com/mkst/ido-poc
Minimal Docker image containing a i386 version of ido5.3 recomp
https://github.com/mkst/ido-poc
Last synced: 5 months ago
JSON representation
Minimal Docker image containing a i386 version of ido5.3 recomp
- Host: GitHub
- URL: https://github.com/mkst/ido-poc
- Owner: mkst
- Created: 2022-08-26T21:47:08.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T22:03:06.000Z (almost 4 years ago)
- Last Synced: 2025-06-06T21:08:44.311Z (about 1 year ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ido5.3 i386 alpine poc
Minimal Docker image containing a i386 version of [ido5.3 recomp](https://github.com/Emill/ido-static-recomp).
```
/compiler/ido5.3/cc: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-i386.so.1, with debug_info, not stripped
```
**Build image:**
```sh
docker build . \
-t ido:5.3-alpine
```
**Check image size:**
```sh
$ docker image ls | head -2
# REPOSITORY TAG IMAGE ID CREATED SIZE
# ido 5.3-alpine fe84a049cab5 2 seconds ago 18.9MB
```
**Run the example:**
```sh
docker run \
--platform linux/386 \
--rm \
ido:5.3-alpine
```
**Run an interactive shell:**
```sh
docker run \
--platform linux/386 \
-ti \
--rm \
ido:5.3-alpine sh
```