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.
Arthur Lu 4dd7faf066 add example shell file to compile cse141L programs,
add xxd to development container
2022-08-10 06:05:07 +00:00

6 lines
168 B
Docker

FROM python:slim
WORKDIR /
RUN apt-get -y update; apt-get -y upgrade
RUN apt-get -y install git binutils xxd
COPY requirements.txt .
RUN pip install -r requirements.txt