mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-23 14:52:27 +00:00
15b5be6c9d
Signed-off-by: Cody Ho <codyho@stanford.edu>
12 lines
401 B
Docker
12 lines
401 B
Docker
FROM debian:bullseye
|
|
|
|
COPY docker/ docker/
|
|
|
|
# There;s a scary error about some frontend not being initialized, but it seems
|
|
# harmless. Not going to bother to fix for a tech demo. More info
|
|
# https://github.com/moby/moby/issues/27988
|
|
RUN apt-get update && apt-get install -y apt-utils
|
|
RUN apt-get update && apt-get install -y $(cat docker/dependencies.txt)
|
|
|
|
RUN echo "Build environment initialized"
|