5d8ea74edc
implement assembler, add binary file outputs to gitignore, add development container for assembler
6 lines
164 B
Docker
6 lines
164 B
Docker
FROM python:slim
|
|
WORKDIR /
|
|
RUN apt-get -y update; apt-get -y upgrade
|
|
RUN apt-get -y install git binutils
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt |