13 lines
312 B
Docker
13 lines
312 B
Docker
from mapbox/robosat:latest-cpu
|
|
|
|
RUN apt-get install -y wget
|
|
|
|
# add rs command to path (until https://github.com/mapbox/robosat/pull/140 is merged)
|
|
ENV PATH="${PATH}:/app:/app/scripts"
|
|
|
|
# include our local changes to robosat
|
|
COPY ./robosat/robosat /app/robosat
|
|
|
|
# include our scripts
|
|
COPY ./scripts /app/scripts
|
|
|