Revision 8d274f6f261a881e65403175fe935bd228420562 authored by Andy Smith on 04 April 2021, 20:48:01 UTC, committed by Andy Smith on 30 May 2021, 17:55:00 UTC
* Based on various end-of-listing table discrepancies between scans and
  output of transcribed code bases
* Changes carried into reconstructed sources as appropriate
* Not exhaustive
* Verified no effect on binary output
1 parent bc21d6b
Raw File
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