heads/reproducible-builds/Dockerfile
Cody Ho 15b5be6c9d
DO NOT MERGE: skeleton docker support
Signed-off-by: Cody Ho <codyho@stanford.edu>
2022-07-18 16:37:13 -07:00

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"