Skip to content

Commit 3b10fa3

Browse files
authored
docker(ssp): Add more cases for aws build machine envvar (#238)
1 parent 63757ec commit 3b10fa3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

inst/Docker/ubuntu_ssp/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ ARG EXTRA_BASE_TAG=
2727
RUN apt-get install -y gdebi-core && \
2828
case "${RELEASE}" in \
2929
xenial) AWS_BUILD_MACHINE=ubuntu-16.04 ;; \
30-
*) AWS_BUILD_MACHINE=ubuntu-18.04 ;; \
30+
bionic) AWS_BUILD_MACHINE=ubuntu-18.04 ;; \
31+
focal) AWS_BUILD_MACHINE=ubuntu-20.04 ;; \
32+
*) AWS_BUILD_MACHINE=ubuntu-22.04 ;; \
3133
esac && \
3234
wget --no-verbose "https://s3.amazonaws.com/rstudio-shiny-server-pro-build/${AWS_BUILD_MACHINE}/x86_64/VERSION" -O "version.txt" && \
3335
VERSION=$(cat version.txt) && \

0 commit comments

Comments
 (0)