This repository has been archived on 2023-12-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cse141L-project/firmware/.devcontainer/Dockerfile
2022-08-13 16:36:00 -07: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