Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Commit 60f560e

Browse files
authored
Merge pull request #46 from TykTechnologies/fix-docker-file
add ca-certs to Dockerfile
2 parents 5a31f8b + c7b93fc commit 60f560e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docker/controller/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ RUN CGO_ENABLED=0 go build -o tyk-k8s .
2020
######## Start a new stage from scratch #######
2121
FROM debian:buster-slim
2222

23+
RUN apt-get update \
24+
&& apt-get upgrade -y \
25+
&& apt-get install -y --no-install-recommends ca-certificates \
26+
&& apt-get autoremove -y \
27+
&& rm -rf /root/.cache
28+
2329
RUN mkdir -p /opt/tyk-k8s
2430
WORKDIR /opt/tyk-k8s
2531

0 commit comments

Comments
 (0)