initial commit

This commit is contained in:
2021-09-13 19:23:45 +02:00
commit c7843dc53c
9 changed files with 355 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.7-alpine
LABEL org.opencontainers.image.source="https://git.sthope.dev/sthope/DockerContainer-randomPwd"
LABEL Maintainer="Sthope"
LABEL Description="Random Password Generator x10"
LABEL version="0.1"
ADD randomPwd/ /randomPwd/
CMD ["python", "/randomPwd/randomPwd.py"]