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