dockerfiles/gparted/Dockerfile
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL (#242)
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

33 lines
903 B
Docker

# DESCRIPTION: Create gparted container with its dependencies
# AUTHOR: Jessie Frazelle <jess@linux.com>
# COMMENTS:
# This file describes how to build a gparted container with all
# dependencies installed. It uses native X11 unix socket.
# Tested on Debian Jessie
# USAGE:
# # Download gparted Dockerfile
# wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/gparted/Dockerfile
#
# # Build gparted image
# docker build -t gparted .
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# --device=/dev/sda:/dev/sda \
# -e DISPLAY=unix$DISPLAY gparted
#
# Base docker image
FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
# Install Gparted and its dependencies
RUN apt-get update && apt-get install -y \
dosfstools \
gparted \
libcanberra-gtk-module \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Autorun gparted
CMD ["/usr/sbin/gparted"]