forked from GOMC-WSU/GOMC
-
Notifications
You must be signed in to change notification settings - Fork 1
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
8b87774
commit 2457d82
Showing
3 changed files
with
54 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,26 @@ | ||
# Use the Debian base image | ||
FROM debian:bullseye | ||
|
||
# Install necessary dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
build-essential \ | ||
git \ | ||
wget \ | ||
python \ | ||
cmake | ||
|
||
# Clone the GOMC repository | ||
RUN git clone -b mergedev_w_rcut --single-branch https://github.com/GregorySchwing/GOMC.git /gomc | ||
|
||
# Set the working directory to the GOMC repository | ||
WORKDIR /gomc | ||
|
||
# Build the code using metamake.sh | ||
RUN ./metamake.sh | ||
|
||
# Add /gomc/bin to the PATH | ||
ENV PATH="/gomc/bin:${PATH}" | ||
|
||
# Command to run when the container starts | ||
CMD ["bash"] |
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
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