Skip to content

Commit

Permalink
build(deps): bump alpine version to 3.20.2 (#60)
Browse files Browse the repository at this point in the history
### Description

OB-XXX Bump alpine version to 3.20.2

### Checklist
- [ ] Created tests which fail without the change (if possible)
- [ ] Extended the README / documentation, if necessary
  • Loading branch information
obs-gh-alexlew committed Jul 24, 2024
1 parent 2cc7b66 commit a70f4c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ RUN tar czhf observe-agent.tar.gz /observe-agent $(ldd /observe-agent | grep -oP
# however, we can copy full directory as root (/) to be base file structure for scratch image
RUN mkdir /output && tar xf /observe-agent.tar.gz --directory /output

FROM alpine:3.20.0 as directories
FROM alpine:3.20.2 as directories
RUN mkdir -p /var/lib/observe-agent/filestorage

FROM alpine:3.20.0 as certs
FROM alpine:3.20.2 as certs
RUN apk --update add ca-certificates

FROM debian:12.5 as systemd
Expand All @@ -28,7 +28,7 @@ RUN tar czhf journalctl.tar.gz /bin/journalctl $(ldd /bin/journalctl | grep -oP
# however, we can copy full directory as root (/) to be base file structure for scratch image
RUN mkdir /output && tar xf /journalctl.tar.gz --directory /output

FROM alpine:3.20.0
FROM alpine:3.20.2
ADD packaging/docker/observe-agent /etc/observe-agent
COPY --from=systemd /output/ /
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
Expand Down

0 comments on commit a70f4c0

Please sign in to comment.