Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Alpine image from 3.18 to latest #205

Merged
merged 1 commit into from
Jul 15, 2024
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- The `scan` and `github repos list` commands now only consider non-forked repositories by default ([#204](https://github.com/praetorian-inc/noseyparker/pull/204)).
This behavior can be reverted to the previous behavior using the `--github-repo-type=all` option.

- The Alpine-based Docker image has been updated to use the `alpine:latest` base image instead of `alpine:3.18` ([#201](https://github.com/praetorian-inc/noseyparker/issues/201)).


## [v0.18.1](https://github.com/praetorian-inc/noseyparker/releases/v0.18.1) (2024-07-12)

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# We use the alpine current, since it's smaller than most debian releases.
################################################################################
FROM rust:1.76-alpine3.18 AS builder
FROM rust:alpine AS builder

# Install dependencies
RUN apk add --no-cache --no-interactive \
Expand All @@ -30,7 +30,7 @@ RUN ./scripts/create-release.zsh --no-debug && \
################################################################################
# Build a smaller image just for running the `noseyparker` binary
################################################################################
FROM alpine:3.18 as runner
FROM alpine:latest as runner

# Add `git` so that noseyparker's git and github integration works
RUN apk add --no-cache --no-interactive git
Expand Down