On my host machine the command:
```
docker run -it --rm --entrypoint /home/steam/steamcmd/linux32/steamcmd
cm2network/steamcmd
```
runs just fine.
On the other hand, a Pipeline step:
```yml
- step:
image: cm2network/steamcmd
script:
- /home/steam/steamcmd/linux32/steamcmd
```
fails with:
```
bash: /home/steam/steamcmd/linux32/steamcmd: cannot execute binary file: Exec format error
```
I understand this is a 64/32 bit binary compat issue, but why is it running fine in a Docker container on my host machine and failing on Bitbucket pipeline?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.