You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: