https://github.com/virtualagc/virtualagc
Revision 6bb1acc86dbd6cba99b27c9c45a56d94af23d501 authored by Ron Burkey on 04 August 2022, 23:36:51 UTC, committed by Ron Burkey on 04 August 2022, 23:36:51 UTC
1 parent 766454b
Raw File
Tip revision: 6bb1acc86dbd6cba99b27c9c45a56d94af23d501 authored by Ron Burkey on 04 August 2022, 23:36:51 UTC
Added a debugging line to the 'simulate' shell script created by the
Tip revision: 6bb1acc
Dockerfile.dev
FROM jlawton/virtualagc
MAINTAINER Jim Lawton

# Use this to clone directly from Github.
#RUN git clone https://github.com/rburkey2005/virtualagc

# Use this to build a copy of the current directory. 
RUN mkdir /virtualagc
COPY . /virtualagc

RUN cd virtualagc && make clean
RUN cd virtualagc && DEV_BUILD=yes make yaLEMAP yaAGC yaAGS yaYUL missions corediffs
back to top