From 78e87fab936e565d6269176dabb73cc07e4276c0 Mon Sep 17 00:00:00 2001 From: Bastian Meissner Date: Sun, 24 May 2020 22:03:51 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d88cf8..98225fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app # Copy all of the relevant files over to the container COPY . . -# Download dependencies, build container +# Download dependencies, build application RUN yarn RUN [ "yarn", "build" ] @@ -15,4 +15,4 @@ RUN [ "yarn", "build" ] EXPOSE 3000 8080 # Serve the app -CMD [ "yarn", "serve:production" ] \ No newline at end of file +CMD [ "yarn", "serve:production" ]