Add trailing forward-slash for COPY destination dir paths in Dockerfile

This commit is contained in:
Catalin Constantin Mititiuc 2025-06-16 22:41:34 -07:00
parent a031ad68a5
commit c78bb89ffe

View File

@ -19,13 +19,13 @@ RUN apt-get update -qq -y && \
mv chromedriver /usr/local/bin/
WORKDIR /usr/src/app
COPY package*.json .
COPY package*.json ./
ENV CHROMEDRIVER_SKIP_DOWNLOAD=true
RUN npm install --omit=dev
RUN npm install chromedriver
COPY . .
COPY ./* ./
CMD [ "npm", "start" ]