blob: 3360ff5507e55eac5551259c771cbe433a17c2fe [file] [log] [blame]
Isaac Wilcovecfd9a032017-01-15 00:08:58 +00001#!/usr/bin/env bash
2
3set -e
4set -u
5
6export DEBIAN_FRONTEND=noninteractive
7
8readonly PKGS=(
9 python3
10 python3-flask
11)
12
13# Install all the packages that we need/want.
14apt-get update
15for pkg in "${PKGS[@]}"; do
16 apt-get install -y -f --force-yes "$pkg"
17done