1
1
mirror of https://github.com/github/semantic.git synced 2024-12-11 08:45:48 +03:00
semantic/Dockerfile.base

16 lines
297 B
Docker
Raw Normal View History

2018-05-17 23:37:22 +03:00
# Base image for deployment suitable containers.
FROM debian:stable-slim
# Install dependencies
2018-05-17 21:54:32 +03:00
RUN apt-get update && apt-get install -y \
ca-certificates \
libgmp10
# Cleanup
2018-05-17 21:54:32 +03:00
RUN apt-get autoremove -y && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["bash"]