Skip to content

Commit 0663c1c

Browse files
Merge pull request #23 from adampweb/master
Fixed base image vulnerability
2 parents bff10e7 + 93115f7 commit 0663c1c

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@ tmp
3232
*.rbc
3333

3434
test.rb
35+
36+
# Dev environment
37+
.vscode
38+
*.code-workspace

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.4-alpine
1+
FROM ruby:3.4.5-alpine
22
USER root
33
WORKDIR /build
44

lib/wayback_machine_downloader/tidy_bytes.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ module TidyBytes
3131
when 156 then [197, 147] # LATIN SMALL LIGATURE OE
3232
when 158 then [197, 190] # LATIN SMALL LETTER Z WITH CARON
3333
when 159 then [197, 184] # LATIN SMALL LETTER Y WITH DIAERESIS
34+
else nil # ANYTHING ELSE...
3435
end
3536
end.freeze
3637

0 commit comments

Comments
 (0)