diff --git a/web/Dockerfile b/web/Dockerfile index 85febac..4f7d0cb 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -8,13 +8,13 @@ RUN apt-get update && \ # Set working directory inside the container WORKDIR /usr/src/app -COPY web ./web -COPY common ./common - -# Install dependencies +COPY web/src/package*.json ./web/src RUN npm install ./web/src RUN pip3 install os +COPY web ./web +COPY common ./common + # Expose the port the app runs on EXPOSE 3000