Sivert V. Sæther
8c3769180d
This also adds the xmr-stak cypto miner container image I created That one is the first of potentially many images I won't push to the official Docker Hub registries, but insted to my own private registry
6 lines
84 B
Docker
6 lines
84 B
Docker
FROM alpine:latest
|
|
RUN apk add python3
|
|
COPY ./ /opt
|
|
WORKDIR /opt
|
|
CMD ./miner.py -m1
|