Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzosaino committed Nov 21, 2018
1 parent 86f327f commit cca105d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Docker container for running FNSS
#
# Some useful commands:
#
# Build: docker build [--build-arg py=<python-version>] -t fnss .
# Open shell: docker run --rm -it fnss
#
ARG py=3.6
FROM python:${py}

COPY . /fnss
WORKDIR /fnss

RUN make install

CMD ["bash"]

0 comments on commit cca105d

Please sign in to comment.