Skip to content

Commit

Permalink
updated base image to alpine:3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Sep 6, 2023
1 parent e4cecb2 commit c0cd784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: meta-agent-docker-ci
on: [push, workflow_dispatch]
jobs:
docker-build-multiarch:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
-
name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Stage 1: Build
#
FROM alpine:3.16 AS buildstage
FROM alpine:3.18 AS buildstage

# Install required components for building
RUN apk update \
Expand All @@ -31,7 +31,7 @@ RUN mkdir -p build \
#
# Stage 2: Install
#
FROM alpine:3.16 as runstage
FROM alpine:3.18 as runstage

RUN apk update \
&& apk add \
Expand Down

0 comments on commit c0cd784

Please sign in to comment.