Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions drvanr-fortran/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Alpine's gfortran wouldnt compile ?
FROM debian:jessie
MAINTAINER robin@kingsquare.nl

# Create working dir
RUN mkdir -p /var/app
COPY ./raffler.F /var/app
WORKDIR /var/app

# INSTALL
RUN apt-get update && apt-get install -yq --no-install-recommends gfortran

# COMPILE
RUN gfortran -o raffler raffler.F

# Run raffler
CMD ["/var/app/raffler", "/var/names/current"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.