Skip to content

Instantly share code, notes, and snippets.

@aaronbrown1988
Last active April 1, 2019 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronbrown1988/8650dc61d5d221d68f58363a3ac78143 to your computer and use it in GitHub Desktop.
Save aaronbrown1988/8650dc61d5d221d68f58363a3ac78143 to your computer and use it in GitHub Desktop.
Gromacs Dockerfile
FROM ubuntu:latest
RUN apt-get update && apt-get upgrade -y && apt-get install -y build-essential cmake git libfftw3-dev libfftw3-3
RUN git clone git://git.gromacs.org/gromacs.git gromacs
RUN mkdir build output input
WORKDIR build
RUN cmake ../gromacs
RUN make -j4
WORKDIR /output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment