Skip to content
Permalink
master
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
 
 
Cannot retrieve contributors at this time
FROM arm32v6/python:3.7.2-alpine3.8
RUN pip3 install pipenv
WORKDIR /bacprop
COPY Pipfile.lock Pipfile ./
RUN pipenv install --system --deploy --ignore-pipfile
COPY bacprop bacprop
RUN ls -la
ENTRYPOINT [ "python", "-m", "bacprop"]