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
```
This commit is contained in:
Avelino 2023-01-02 15:11:53 -03:00 committed by GitHub
parent 58d783cdef
commit ea61235e87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
FROM debian:10
RUN apt-get update
RUN apt-get install -y curl
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