Add dockerfile

This commit is contained in:
Valentin Brandl 2019-07-27 20:07:51 +02:00
parent 90059116ad
commit 0882815958
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

9
frontend/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node:alpine
RUN npm install -g elm elm-test
COPY ./elm.json ./elm.json
COPY ./src ./src
COPY ./tests ./tests
RUN elm make src/Main.elm