From 9b3161ae1567340528d58f731d0d7878517f1c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Fri, 4 Jan 2019 19:18:53 +0100 Subject: [PATCH] Fix copy+paste error `backend`=>`webapp` @mattwr18 ouch, that was a hard to spot error. It struck my eye when I was switching back and forth between `docker-compose.override.yml` and `docker-compose.travis.yml`. --- Dockerfile | 4 ++-- docker-compose.travis.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d9b679111..e28629294 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,8 @@ FROM base as builder RUN yarn install --frozen-lockfile --non-interactive RUN cd styleguide && yarn install --production=false --frozen-lockfile --non-interactive \ && cd .. \ - && yarn run styleguide:build -COPY . . + && yarn run styleguide:build +COPY . . RUN yarn run build FROM base as production diff --git a/docker-compose.travis.yml b/docker-compose.travis.yml index 80942a27a..0c3293127 100644 --- a/docker-compose.travis.yml +++ b/docker-compose.travis.yml @@ -1,7 +1,7 @@ version: "3.7" services: - backend: + webapp: build: context: . - target: builder \ No newline at end of file + target: builder