-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac47b4b
commit 759bf4f
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
./build | ||
./benchmarks | ||
!./benchmarks/QuantumProgram |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ubuntu:latest | ||
|
||
ENV TZ=Asia/Taipei \ | ||
DEBIAN_FRONTEND=noninteractive \ | ||
PATH="/root/AutoQ/build/cli:${PATH}" | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
RUN apt-get update && apt-get install -y g++ make cmake libboost-filesystem-dev libboost-test-dev libboost-regex-dev python3 | ||
RUN mkdir -p /root/AutoQ | ||
COPY . /root/AutoQ | ||
|
||
WORKDIR /root | ||
CMD ["/bin/bash"] |