gulag/docker/gulag-db/debian/Dockerfile
Dominik Chilla ebe8742776 * build dependent http-proxy as ARG
* extended exception handling now meets the requirements of REST
* README cosmetics
2018-12-31 00:51:11 +01:00

8 lines
202 B
Docker

ARG http_proxy
ARG https_proxy
FROM debian
RUN apt update && \
apt -yq --no-install-recommends install procps net-tools mariadb-server mariadb-client
COPY db/gulag.sql /.
CMD ["/usr/bin/mysqld_safe"]