Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JaewonHur committed Mar 1, 2023
1 parent 3a8df8e commit 102c486
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:20.04

# Disable dialog questions
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections

# Install git, sudo
RUN apt update \
&& apt install -y \
git \
sudo

# Install specdoctor, it takes about 1 hour
WORKDIR "/root"

RUN git clone https://github.com/compsec-snu/specdoctor.git \
&& cd specdoctor \
&& echo "y" | ./setup.sh

ENTRYPOINT ["/bin/bash"]

0 comments on commit 102c486

Please sign in to comment.