Merge branch 'fix-root-ca' into 'master'

Install root CAs in backend container

Closes #54

See merge request acs/public/villas/web-backend-go!23
This commit is contained in:
Steffen Vogel 2021-01-22 10:58:36 +01:00
commit e383df74ab

View file

@ -10,6 +10,10 @@ RUN go build -o villasweb-backend
FROM debian:buster
RUN apt-get update && \
apt-get install -y \
ca-certificates
COPY --from=builder /build/villasweb-backend /usr/bin
EXPOSE 4000