1
1
mirror of https://github.com/github/semantic.git synced 2024-12-03 00:16:52 +03:00
semantic/Dockerfile.base

18 lines
327 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 \
netbase \
libssl1.1
# 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"]