mirror of
https://github.com/JHUAPL/SIMoN.git
synced 2026-01-08 22:37:56 -05:00
8 lines
381 B
Docker
8 lines
381 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update && apt-get install -y python3-dev=3.6.7-1~18.04 python3-pip=9.0.1-2.3~ubuntu1.18.04.2 && apt-get -qy autoremove && apt-get clean && rm -r /var/lib/apt/lists/*
|
|
COPY ./build/requirements.txt /
|
|
RUN pip3 install -r /requirements.txt
|
|
COPY ./outer_wrapper.py /.
|
|
COPY ./graphs/out/instance-graph.geojson /.
|
|
COPY ./graphs/out/abstract-graph.geojson /.
|