Skip to content

Commit

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

* fix(deps): bump deps for `alpine-3.20`

---------

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 committed May 23, 2024
1 parent fd30b9a commit 9d372b9
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.19.1 as build-env
FROM alpine:3.20.0 as build-env

RUN apk --no-cache add \
bash=5.2.21-r0 \
cmake=3.27.8-r0 \
gcc=13.2.1_git20231014-r0 \
g++=13.2.1_git20231014-r0\
git=2.43.4-r0 \
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.1-r0 \
make=4.4.1-r2 \
python3=3.11.9-r0 \
python3=3.12.3-r1 \
patch=2.7.6-r10 \
linux-headers=6.5-r0 && \
linux-headers=6.6-r0 && \
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.19.1 as runtime
FROM alpine:3.20.0 as runtime
RUN apk --no-cache add \
libstdc++=13.2.1_git20231014-r0
libstdc++=13.2.1_git20240309-r0
COPY --from=build-env /install/bin /app
COPY ./configuration.docker.json /configuration.json

Expand Down

0 comments on commit 9d372b9

Please sign in to comment.