Skip to content

Instantly share code, notes, and snippets.

@juliocv
juliocv / Dockerfile
Created February 24, 2020 12:19 — forked from armsp/Dockerfile
Gist containing simple Dockerfile and steps to run GUI from a docker container
#FROM python:3.7 ## Works with either of the base images. Size is larger with Python due to there being python2.7 too
FROM ubuntu:18.10
RUN apt-get update && apt-get upgrade -y
RUN apt-get install python3-dev python3-pip -y
RUN apt-get install python3-gi -y && \
apt-get install gir1.2-gtk-3.0 -y && \
apt-get install gir1.2-appindicator3-0.1 -y
@juliocv
juliocv / install-docker.sh
Last active February 26, 2020 00:53 — forked from madkoding/install-docker-deepin.sh
Install Docker-CE script for Deepin Linux
#!/bin/sh
# Shell script to add docker-ce to Deepin Linux repositories
# From docker pages https://docs.docker.com/install/linux/docker-ce/debian/
# Remove old docker
sudo apt-get remove -y docker docker-engine docker.io containerd runc
# Install dependencies