I am trying to create a docker file with the program and its dependencies. However I am not 100% familiar with using the make environment. Also by using the pip environment I seem to be missing packages. Is there a build procedure available?
in progress:
FROM python:3.7-slim-buster
# Add full repo to docker image
ADD . mixs-source
# Change working directory
WORKDIR /mixs-source
# Install pipenv and install the Pipfile
RUN pip install pipenv && pipenv install
I am trying to create a docker file with the program and its dependencies. However I am not 100% familiar with using the make environment. Also by using the pip environment I seem to be missing packages. Is there a build procedure available?
in progress: