Merge pull request #6073 from dolthub/db/fix-dockerfiles

[no-release-notes] /docker/{Dockerfile, serverDockerfile}: install ca-certificates
This commit is contained in:
Dustin Brown
2023-06-01 11:09:47 -07:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ RUN apt update -y && \
apt install -y \
tini
RUN apt-get update -y && apt-get install -y ca-certificates
ADD https://github.com/dolthub/dolt/releases/download/v${DOLT_VERSION}/dolt-linux-${BUILDARCH}.tar.gz dolt-linux-${BUILDARCH}.tar.gz
RUN tar zxvf dolt-linux-${BUILDARCH}.tar.gz && \
cp dolt-linux-${BUILDARCH}/bin/dolt /usr/local/bin && \

View File

@@ -8,6 +8,8 @@ RUN apt update -y && \
apt install -y \
tini
RUN apt-get update -y && apt-get install -y ca-certificates
ADD https://github.com/dolthub/dolt/releases/download/v${DOLT_VERSION}/dolt-linux-${BUILDARCH}.tar.gz dolt-linux-${BUILDARCH}.tar.gz
RUN tar zxvf dolt-linux-${BUILDARCH}.tar.gz && \
cp dolt-linux-${BUILDARCH}/bin/dolt /usr/local/bin && \