This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |