diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..27c8b63 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,15 @@ +__pycache__/ +discord.py-rewrite/ +tijd/ +.vs/ +test.png +UpgradeLog\.htm +markov_dict.npy +*.ini +Stroopwafel.sln +Stroopwafel.pyproj +*.txt +!requirements.txt +*.sh +*.npy +#.env \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1a755b2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.10 + +WORKDIR /opt/stroopwafel + +COPY . ./ + +RUN pip install -r requirements.txt + +CMD python -m unittest tests \ No newline at end of file