Skip to content

Commit

Permalink
install ca-certificates in container
Browse files Browse the repository at this point in the history
  • Loading branch information
jfontan committed Jul 23, 2021
1 parent 8f95258 commit f72ecee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ RUN go build -v ./server/cmd/glslsandbox

FROM debian:buster-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

EXPOSE 8888
EXPOSE 8883
COPY --from=builder /build/ /glslsandbox/
Expand Down

0 comments on commit f72ecee

Please sign in to comment.