We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fbbed3 commit 8adba4aCopy full SHA for 8adba4a
.dockerignore
@@ -1,7 +1,5 @@
1
.venv/
2
.env
3
-botold.py
4
-old/
5
LICENSE
6
README.md
7
example.env
.gitignore
@@ -160,6 +160,4 @@ cython_debug/
160
#.idea/
161
162
# Docker environment file
163
-.env
164
165
+.env
Dockerfile
@@ -1,7 +1,7 @@
FROM python:3.9-slim
# Install Redis
-RUN apt-get update && apt-get install -y redis-server
+RUN apt-get update && apt-get install -y redis-server && apt-get clean && rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app
0 commit comments