Skip to content

Commit b98e11b

Browse files
authored
Add extra OS tools for troubleshooting (#322)
1 parent 46df2b3 commit b98e11b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Parseable Server (C) 2022 - 2023 Parseable, Inc.
2-
#
2+
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as
55
# published by the Free Software Foundation, either version 3 of the
66
# License, or (at your option) any later version.
7-
#
7+
#
88
# This program is distributed in the hope that it will be useful,
99
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1111
# GNU Affero General Public License for more details.
12-
#
12+
#
1313
# You should have received a copy of the GNU Affero General Public License
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

@@ -31,6 +31,10 @@ FROM gcr.io/distroless/cc-debian11:nonroot
3131
WORKDIR /parseable
3232

3333
COPY --from=busybox:1.35.0-uclibc /bin/sh /bin/sh
34+
COPY --from=busybox:1.35.0-uclibc /bin/ps /bin/ps
35+
COPY --from=busybox:1.35.0-uclibc /bin/ls /bin/ls
36+
COPY --from=busybox:1.35.0-uclibc /bin/du /bin/du
37+
COPY --from=busybox:1.35.0-uclibc /bin/cat /bin/cat
3438
COPY --from=builder /parseable/target/release/parseable /usr/bin/parseable
3539

3640
CMD ["parseable"]

0 commit comments

Comments
 (0)