Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ ARG UID=991
ARG GID=991

RUN apk add --no-cache \
'curl>=8' \
'gcompat>=0' \
'tzdata>=2024' \
'libxml2>=2' \
Expand Down
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ task :test do
sh 'curl -f http://127.0.0.1:3000/example.rss || exit 1'

Output.describe 'Authenticated request to GET /health_check.txt'
sh 'curl -f http://username:password@127.0.0.1:3000/health_check.txt || exit 1'
sh 'docker exec html2rss-web-test curl -f http://username:password@127.0.0.1:3000/health_check.txt || exit 1'

Output.describe 'Print output of `html2rss help`'
sh 'docker exec html2rss-web-test html2rss help'
Expand All @@ -72,4 +72,6 @@ ensure
sh 'docker stop html2rss-web-test'
sh 'docker rm html2rss-web-test'
end

exit 1 if $ERROR_INFO
end