Don't test in build container

This commit is contained in:
Valentin Brandl 2019-07-29 18:53:54 +02:00
parent 237eb52ff4
commit 47680670c7
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -3,17 +3,16 @@ FROM node:alpine as frontend
# install envsubst # install envsubst
RUN apk add -U --upgrade --no-cache gettext 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/build.sh ./build.sh
COPY ./frontend/template.html ./template.html COPY ./frontend/template.html ./template.html
COPY ./frontend/elm.json ./elm.json COPY ./frontend/elm.json ./elm.json
COPY ./frontend/src ./src COPY ./frontend/src ./src
COPY ./frontend/tests ./tests # COPY ./frontend/tests ./tests
RUN ./build.sh RUN ./build.sh
FROM ekidd/rust-musl-builder:stable as backend FROM ekidd/rust-musl-builder:stable as backend
# create new cargo project # create new cargo project