mirror of
https://github.com/github/semantic.git
synced 2024-12-01 00:33:59 +03:00
18 lines
327 B
Docker
18 lines
327 B
Docker
# Base image for deployment suitable containers.
|
|
|
|
FROM debian:stable-slim
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
libgmp10 \
|
|
netbase \
|
|
libssl1.1
|
|
|
|
# Cleanup
|
|
RUN apt-get autoremove -y && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["bash"]
|