From 47680670c7ad0641cf97b308e0e99362d2db049b Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Mon, 29 Jul 2019 18:53:54 +0200 Subject: [PATCH] Don't test in build container --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01ba319..9c6bad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,17 +3,16 @@ FROM node:alpine as frontend # install envsubst RUN apk add -U --upgrade --no-cache gettext -RUN yarn global add elm elm-test uglify-js +RUN yarn global add elm uglify-js COPY ./frontend/build.sh ./build.sh COPY ./frontend/template.html ./template.html COPY ./frontend/elm.json ./elm.json COPY ./frontend/src ./src -COPY ./frontend/tests ./tests +# COPY ./frontend/tests ./tests RUN ./build.sh - FROM ekidd/rust-musl-builder:stable as backend # create new cargo project