This repository has been archived on 2023-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
cse141L-project/.devcontainer/Dockerfile
Arthur Lu 5d8ea74edc differentiate numerical imm and label imm,
implement assembler,
add binary file outputs to gitignore,
add development container for assembler
2022-08-10 05:44:32 +00:00

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