Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PYTHON_VERSION_ALT := "3.8.17"
PYTHON_VERSION_RHEL := "3.9.14"
PYTHON_VERSION_ALT_RHEL := "3.8.15"

QUARTO_VERSION := "1.4.557"
QUARTO_VERSION := "1.7.31"

SNYK_ORG := env("SNYK_ORG", "")

Expand Down
2 changes: 1 addition & 1 deletion ci.Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PYTHON_VERSION_ALT := "3.8.17"
DRIVERS_VERSION := "2024.03.0"
DRIVERS_VERSION_RHEL := DRIVERS_VERSION + "-1"

QUARTO_VERSION := "1.4.557"
QUARTO_VERSION := "1.7.31"

# just _get-os-alias jammy
_get-os-alias OS:
Expand Down
2 changes: 1 addition & 1 deletion connect/Dockerfile.ubuntu2204
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1-labs
FROM product-base-pro as build

Check failure on line 2 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / lint-connect-ubuntu2204

DL3049 info: Label `maintainer` is missing.

Check warning on line 2 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 2 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect - Daily

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY --chmod=0775 startup.sh /usr/local/bin/startup.sh

Expand All @@ -8,7 +8,7 @@
ARG PYTHON_VERSION=3.9.17
ARG PYTHON_VERSION_ALT=3.8.17
ARG RSC_VERSION=2025.05.0
ARG QUARTO_VERSION=1.4.557
ARG QUARTO_VERSION=1.7.31
ARG SCRIPTS_DIR=/opt/positscripts

### Install Quarto ###
Expand Down Expand Up @@ -46,9 +46,9 @@

### Configure Connect ###
EXPOSE 3939/tcp
ENV RSC_LICENSE ""

Check warning on line 49 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 49 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect - Daily

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 49 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect - Daily

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV RSC_LICENSE_SERVER ""

Check warning on line 50 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 50 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect - Daily

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV STARTUP_DEBUG_MODE 0

Check warning on line 51 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 51 in connect/Dockerfile.ubuntu2204

View workflow job for this annotation

GitHub Actions / Connect - Daily

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
COPY rstudio-connect.gcfg /etc/rstudio-connect/rstudio-connect.gcfg
RUN sed -i "s/{{PYTHON_VERSION}}/${PYTHON_VERSION}/g" /etc/rstudio-connect/rstudio-connect.gcfg \
&& sed -i "s/{{PYTHON_VERSION_ALT}}/${PYTHON_VERSION_ALT}/g" /etc/rstudio-connect/rstudio-connect.gcfg \
Expand Down
2 changes: 1 addition & 1 deletion docker-bake.preview.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ target "product-base-dev" {
PYTHON_VERSION = builds.py_primary
PYTHON_VERSION_ALT = builds.py_alternate
TINI_VERSION = "0.19.0"
QUARTO_VERSION = "1.4.557"
QUARTO_VERSION = "1.7.31"
}
}

Expand Down
Loading