Install ca-certs

This commit is contained in:
Ben Jackson 2019-02-17 22:46:52 +00:00
commit 7f78429f8d

View file

@ -2,8 +2,15 @@ FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y dist-upgrade && \
apt-get -y install python3 vim tcl tcl-dev tcllib && apt-get -y autoremove
RUN apt-get update && \
apt-get -y dist-upgrade && \
apt-get -y install python3 \
ca-cacert \
vim \
git \
tcl-dev \
tcllib && \
apt-get -y autoremove
RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \
dpkg-reconfigure --frontend noninteractive tzdata