d2/ci/release/linux/Dockerfile
Avelino ea61235e87
docker: add ca-certificates package
fixed: #594

```
err: failed to install Playwright: could not install driver: could not install driver: could not download driver: Get "https://playwright.azureedge.net/builds/driver/next/playwright-1.20.0-beta-1647057403000-linux.zip": x509: certificate signed by unknown authority
```
2023-01-02 15:11:53 -03:00

12 lines
293 B
Docker

FROM debian:10
RUN apt-get update
RUN apt-get install -y curl ca-certificates
ARG GOVERSION=
RUN curl -fsSL "https://go.dev/dl/go$GOVERSION.tar.gz" >/tmp/go.tar.gz
RUN tar -C /usr/local -xzf /tmp/go.tar.gz
ENV PATH="/usr/local/go/bin:$PATH"
RUN apt-get install -y build-essential \
rsync