You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
273 B
Bash

#!/usr/bin/env bash
packages="python3-dev gcc"
apt-get update \
&& apt-get install -y --no-install-recommends $packages
pip install -r requirements.txt
apt-get remove -y $packages \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*