-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add logstash directories and amend CI/CD workflows * feat: added logstash dockerfile * fix: hadolint errors * fix: remove apt update * fix: test root user * fix: setting final user * fix: use correct versions * fix: versions again * fix: formatting * feat: add lables with description and install sinatra v4.1.0 * fix: hadolint error * fix: typo * fix: sinatra build in layer * fix: sinatra build hadolint error * fix: sinatra build hadolint error * fix: hadolint error on ruby install * fix: stripping out sinatra update breaks everything --------- Co-authored-by: laurence.barker@dvsa.gov.uk <laurence.barker@dvsa.gov.uk>
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM logstash:8.16.0 | ||
|
||
LABEL version="1.0" | ||
LABEL description="Dockerfile with logstash with Sinatra and MySQL client for VOL" | ||
|
||
USER root | ||
|
||
RUN apt-get update && \ | ||
apt-get -y --no-install-recommends install \ | ||
curl=7.68.0-1ubuntu2.24 \ | ||
default-mysql-client=1.0.5ubuntu2 && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
USER 1000 |