summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@jemstep.com>2020-02-20 11:26:04 +0200
committerJustin Worthe <justin@jemstep.com>2020-02-20 11:26:04 +0200
commit56b929b79892f786a6c370d7cf2e3a93c251d7cc (patch)
tree130f5a9df3045dc18c3b3f7ea5d39bbd3dce0fe3
parented7e052d5d419c53c7404f36a7d5ad5f521fe0cd (diff)
Changed base image to ubuntu since it includes glibc
-rw-r--r--github/Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/github/Dockerfile b/github/Dockerfile
index 29b6cb1..6510af0 100644
--- a/github/Dockerfile
+++ b/github/Dockerfile
@@ -1,2 +1,3 @@
-FROM alpine:3.11
-RUN apk add --no-cache git bash gnupg
+FROM ubuntu:18.04
+RUN apt-get update && apt-get install -y git gnupg2 dirmngr
+