Skip to content

Commit

Permalink
chore(deps): update alpine docker tag to v3.21.0 (#1374)
Browse files Browse the repository at this point in the history
* chore(deps): update alpine docker tag to v3.21.0

* fix(deps): bump alpine deps for 3.21.0

Signed-off-by: Goetz Goerisch <[email protected]>

---------

Signed-off-by: Goetz Goerisch <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Goetz Goerisch <[email protected]>
  • Loading branch information
renovate[bot] and GoetzGoerisch authored Dec 6, 2024
1 parent 4fc5df1 commit 5e18829
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
FROM alpine:3.20.3 AS build-env
FROM alpine:3.21.0 AS build-env

RUN apk --no-cache add \
bash=5.2.26-r0 \
cmake=3.29.3-r0 \
gcc=13.2.1_git20240309-r0 \
g++=13.2.1_git20240309-r0 \
git=2.45.2-r0 \
bash=5.2.37-r0 \
cmake=3.31.1-r0 \
gcc=14.2.0-r4 \
g++=14.2.0-r4 \
git=2.47.1-r0 \
make=4.4.1-r2 \
python3=3.12.7-r0 \
python3=3.12.7-r1 \
patch=2.7.6-r10 \
linux-headers=6.6-r0 && \
linux-headers=6.6-r1 && \
mkdir /install

ARG BUILD_TYPE=Debug
Expand All @@ -45,9 +45,9 @@ RUN cmake /src/Sample-Server/.github/ \
-DCMAKE_INSTALL_PREFIX:PATH=/install /build && \
cmake --build .

FROM alpine:3.20.3 AS runtime
FROM alpine:3.21.0 AS runtime
RUN apk --no-cache add \
libstdc++=13.2.1_git20240309-r0
libstdc++=14.2.0-r4
COPY --from=build-env /install/bin /app
COPY ./configuration.docker.json /configuration.json

Expand Down

0 comments on commit 5e18829

Please sign in to comment.