From add7b9823105f0bef978272a19dd030b64d75abe Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Tue, 20 Sep 2022 10:47:23 -0400 Subject: [PATCH] Update Dockerfile for MSSQL image to 2019 (#2290) --- util/MsSql/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util/MsSql/Dockerfile b/util/MsSql/Dockerfile index 70e239050..330f78208 100644 --- a/util/MsSql/Dockerfile +++ b/util/MsSql/Dockerfile @@ -1,7 +1,9 @@ -FROM mcr.microsoft.com/mssql/server:2017-CU18-ubuntu-16.04 +FROM mcr.microsoft.com/mssql/server:2019-CU17-ubuntu-20.04 LABEL com.bitwarden.product="bitwarden" +USER root:root + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \