About this blog

This blog contains Matlab code I wrote for fun, and also lots of other stuff that is useful to me. I would like to share them with you. Hopefully this can help someone else on the internet someday in some way.


my-alpine and docker-compose.yml

 ``` version: '1' services:     man:       build: .       image: my-alpine:latest   ```  Dockerfile: ``` FROM alpine:latest ENV PYTH...