Skip to content

Commit

Permalink
Bump to version 0.1.47
Browse files Browse the repository at this point in the history
Remove the Gemfile.lock allowing the bundle install to pick latest packages
Update Docker base image to ruby:3.2-alpine
Add a Dockerfile build smoketest `ssh_scan --help`
  • Loading branch information
ndejong committed May 16, 2023
1 parent dd5deae commit e354701
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 101 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ruby:3.0-alpine

# https://hub.docker.com/_/ruby/tags
FROM ruby:3.2-alpine

WORKDIR /app
ADD . /app
Expand All @@ -10,6 +12,7 @@ RUN set -x \
&& apk --update add --virtual build-dependencies build-base \
&& bundle install \
&& apk del build-dependencies build-base \
&& rm -rf /var/cache/apk/*
&& rm -rf /var/cache/apk/* \
&& /app/bin/ssh_scan --help

ENTRYPOINT ["/app/bin/ssh_scan"]
98 changes: 0 additions & 98 deletions Gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion lib/ssh_scan/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SSHScan
VERSION = '0.1.46'
VERSION = '0.1.47'
end

0 comments on commit e354701

Please sign in to comment.