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" ]