We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02250e8 commit a7a7ce1Copy full SHA for a7a7ce1
.dockerignore
@@ -138,13 +138,18 @@ temp/
138
test.py
139
140
# Other stuff
141
+.dockerignore
142
.env.example
143
.gitignore
144
.github/
145
app.json
146
CHANGELOG.md
147
+docker-compose.yml
148
+LICENSE
149
+PRIVACY.md
150
Procfile
151
pyproject.toml
152
README.md
153
Pipfile
154
Pipfile.lock
155
+SPONSORS.json
Dockerfile
@@ -14,3 +14,6 @@ COPY --from=build /inst /usr/local
14
WORKDIR /modmailbot
15
CMD ["python", "bot.py"]
16
COPY . /modmailbot
17
+RUN adduser --disabled-password --gecos '' app && \
18
+ chown -R app /modmailbot
19
+USER app
0 commit comments