diff --git a/Dockerfile b/Dockerfile index 794acbc..70fc178 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ FROM node:14.15.0 LABEL maintainer="TP2" +WORKDIR /app + +COPY package.json /app + RUN yarn install +COPY . /app + RUN yarn start \ No newline at end of file