Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/64j0/dockerized-cli-with-input-redirection
POC: Dockerized CLI application with input redirection
https://github.com/64j0/dockerized-cli-with-input-redirection
docker fsharp
Last synced: 7 days ago
JSON representation
POC: Dockerized CLI application with input redirection
- Host: GitHub
- URL: https://github.com/64j0/dockerized-cli-with-input-redirection
- Owner: 64J0
- Created: 2024-11-23T02:21:13.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-23T03:10:31.000Z (2 months ago)
- Last Synced: 2024-11-30T12:33:37.716Z (2 months ago)
- Topics: docker, fsharp
- Language: F#
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+TITLE: POC: Dockerized CLI with input redirection
#+AUTHOR: 64J0This repository contains the code for a proof of concept (POC) demonstrating how
input redirection can be used to provide data to a Dockerized CLI
application. The application, developed in F#, sums all numbers passed through
STDIN after converting them to their integer representations.+ Check this article from my personal blog for more details: [[https://gaio.dev/posts/2024-11-22-dockerized-cli-with-input-redirection][link]].
** How to run
#+BEGIN_SRC bash :tangle no
# run the program using "normal" base image
make run# run the program using the chiseled base image
make run-chiseled
#+END_SRC