From c97dcc5608f050415f6a86496da7fc04b0df5169 Mon Sep 17 00:00:00 2001 From: BillMills Date: Wed, 19 Jun 2019 12:52:23 -0400 Subject: [PATCH] no need for such a long workdir --- bulletin-board-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bulletin-board-app/Dockerfile b/bulletin-board-app/Dockerfile index 1b4e895..e9cef1d 100644 --- a/bulletin-board-app/Dockerfile +++ b/bulletin-board-app/Dockerfile @@ -1,5 +1,5 @@ FROM node -WORKDIR /usr/src/app +WORKDIR /app COPY . . RUN npm install CMD [ "npm", "start" ]