Files
bake/docker/core.Dockerfile
T
Kenneth Reitz 770944d5f1 test
2019-09-23 22:25:54 -04:00

16 lines
298 B
Docker

FROM python:3-slim
# Tell Ubuntu to not prompt during apt installs.
ARG DEBIAN_FRONTEND='noninteractive'
# -- System dependencies + common utilities.
RUN pip3 install pipenv --quiet --no-cache 2>/dev/null
# -- Home directory.
RUN set -ex && \
mkdir /app
WORKDIR /app
ENTRYPOINT [ "bash" ]