Skip to content

Commit

Permalink
Merge pull request #107 from smacker/fix_docker_image
Browse files Browse the repository at this point in the history
Change base docker image to debian slim
  • Loading branch information
smacker authored Jan 5, 2018
2 parents e5d211a + 2701482 commit 6e77f41
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM alpine:3.6
FROM debian:stretch-slim

RUN apk add --no-cache device-mapper ca-certificates
RUN apt-get update && \
apt-get install -y --no-install-recommends --no-install-suggests \
ca-certificates \
libxml2 \
&& apt-get clean
ADD bin/bblfsh-dashboard /bin/bblfsh-dashboard
ENTRYPOINT ["/bin/bblfsh-dashboard", "-addr", ":80"]

0 comments on commit 6e77f41

Please sign in to comment.