Skip to content

Commit

Permalink
QD-7123 Bump tools versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Sep 21, 2023
1 parent 6b11697 commit bd97252
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion 2023.2/go/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_TAG="1.19-bullseye"
ARG GO_TAG="1.21-bullseye"
ARG NODE_TAG="16-bullseye-slim"
FROM node:$NODE_TAG AS node_base
FROM golang:$GO_TAG
Expand Down
4 changes: 2 additions & 2 deletions 2023.2/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG NODE_TAG="16-bullseye-slim"
ARG PHP_TAG="8.1-cli-bullseye"
ARG COMPOSER_TAG="2.5.1"
ARG PHP_TAG="8.2-cli-bullseye"
ARG COMPOSER_TAG="2.6.3"
FROM node:$NODE_TAG AS node_base
FROM composer:$COMPOSER_TAG AS composer_base
FROM php:$PHP_TAG
Expand Down
8 changes: 5 additions & 3 deletions 2023.2/python-community/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ ENV CONDA_DIR="/opt/miniconda3" \
PIP_CACHE_DIR="$QODANA_DATA/cache/.pip/" \
FLIT_ROOT_INSTALL=1
ENV PATH="$CONDA_DIR/bin:$HOME/.local/bin:$PATH"
ARG CONDA_VERSION="py310_22.11.1-1"

# https://docs.conda.io/projects/miniconda/en/latest/miniconda-hashes.html
ARG CONDA_VERSION="py311_23.5.2-0"

# hadolint ignore=SC2174,DL3009
RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
Expand All @@ -54,10 +56,10 @@ RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
case "$dpkgArch" in \
'amd64') \
MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh" \
SHA256SUM="00938c3534750a0e4069499baf8f4e6dc1c2e471c86a59caa0dd03f4a9269db6";; \
SHA256SUM="634d76df5e489c44ade4085552b97bebc786d49245ed1a830022b0b406de5817";; \
'arm64') \
MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-aarch64.sh" \
SHA256SUM="48a96df9ff56f7421b6dd7f9f71d548023847ba918c3826059918c08326c2017";; \
SHA256SUM="3962738cfac270ae4ff30da0e382aecf6b3305a12064b196457747b157749a7a";; \
*) echo "Unsupported architecture $TARGETPLATFORM" >&2; exit 1;; \
esac && \
curl -fsSL -o /tmp/miniconda.sh "${MINICONDA_URL}" && \
Expand Down
8 changes: 5 additions & 3 deletions 2023.2/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ ENV CONDA_DIR="/opt/miniconda3" \
PIP_CACHE_DIR="$QODANA_DATA/cache/.pip/" \
FLIT_ROOT_INSTALL=1
ENV PATH="$CONDA_DIR/bin:$HOME/.local/bin:$PATH"
ARG CONDA_VERSION="py310_22.11.1-1"

# https://docs.conda.io/projects/miniconda/en/latest/miniconda-hashes.html
ARG CONDA_VERSION="py311_23.5.2-0"

# hadolint ignore=SC2174,DL3009
RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
Expand All @@ -54,10 +56,10 @@ RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \
case "$dpkgArch" in \
'amd64') \
MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh" \
SHA256SUM="00938c3534750a0e4069499baf8f4e6dc1c2e471c86a59caa0dd03f4a9269db6";; \
SHA256SUM="634d76df5e489c44ade4085552b97bebc786d49245ed1a830022b0b406de5817";; \
'arm64') \
MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-aarch64.sh" \
SHA256SUM="48a96df9ff56f7421b6dd7f9f71d548023847ba918c3826059918c08326c2017";; \
SHA256SUM="3962738cfac270ae4ff30da0e382aecf6b3305a12064b196457747b157749a7a";; \
*) echo "Unsupported architecture $TARGETPLATFORM" >&2; exit 1;; \
esac && \
curl -fsSL -o /tmp/miniconda.sh "${MINICONDA_URL}" && \
Expand Down
6 changes: 3 additions & 3 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ target "232" {
QD_RELEASE = "2023.2"
BASE_TAG = "bullseye-slim"
DOTNET_TAG = "6.0-bullseye-slim"
GO_TAG = "1.19-bullseye"
GO_TAG = "1.21-bullseye"
NODE_TAG = "16-bullseye-slim"
PHP_TAG = "8.1-cli-bullseye"
COMPOSER_TAG="2.5.1"
PHP_TAG = "8.2-cli-bullseye"
COMPOSER_TAG="2.6.3"
}
tags = [
"docker.io/jetbrains/qodana:${edition}-${version}-latest"
Expand Down

0 comments on commit bd97252

Please sign in to comment.