Skip to content
Permalink
dea346ba82
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit d9f8401 Jan 26, 2020 History
0 contributors

Users who have contributed to this file

21 lines (17 sloc) 556 Bytes
FROM python:3.7
ENV PYTHONUNBUFFERED 1
ENV SHELL /bin/bash
# ------------------------------------------
# install necessary packages via apt-get:
# ------------------------------------------
# RUN apt-get update && apt-get install -y --no-install-recommends \
# pkg1 \
# pkg2
# ...
# this is supposed to save memory:
# RUN rm -rf /var/lib/apt/lists/*
# ------------------------------------------
# install python dependencies:
# ------------------------------------------
COPY requirements.txt "$INSTALL_DIR/"
RUN pip install -r requirements.txt