mirror of
https://github.com/chillout2k/gulag.git
synced 2025-12-13 16:00:18 +00:00
6 lines
171 B
Docker
6 lines
171 B
Docker
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"]
|