Added code

This commit is contained in:
2023-05-23 12:46:15 +02:00
parent 428b99ad83
commit 5788bd7a43
4 changed files with 155 additions and 2 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.11.3-slim-bullseye
RUN apt update && apt add --no-cache bash git openssh python3 py3-pip
RUN pip install --no-cache-dir -q --upgrade pip
RUN pip install --no-cache-dir -q autoflake
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]