mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
253 B
10 lines
253 B
5 years ago
|
FROM python:3.6
|
||
5 years ago
|
ENV PYTHONUNBUFFERED 1
|
||
|
WORKDIR /sapl-dev
|
||
4 years ago
|
COPY ../requirements ./requirements/
|
||
5 years ago
|
RUN apt update && \
|
||
|
apt -y install graphviz-dev && \
|
||
4 years ago
|
pip install --upgrade pip && \
|
||
5 years ago
|
pip install -r ./requirements/dev-requirements.txt
|
||
5 years ago
|
EXPOSE 8000
|