Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
LICENSE
8 changes: 8 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,11 @@ This repository contains some simple scripts to build third party libraries for
| libxml2 | ❌ |
| openssl | ❌ |
| zlib | ❓ |


# Docker
To launch the container in your terminal, enter this command
## Alpine
```
docker run -it sumzbrod/ctl_simple_container:alpine.3.23.3
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why you didn't use the alphine normal image?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using just alpine will download the latest version every time you build the image, which can lead to inconsistent behavior. Therefore, I used the latest version and wrote down its number so it wouldn't change without intervention.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But I think Alpine won't suit you because you need a bash

```
7 changes: 7 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM alpine:3.23.3

WORKDIR /app

COPY . .

CMD ["/bin/sh"]
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I fail to see any customization in this PR or something that would eg: bootstrap the sh files in the repo