Merge pull request #26 from N7KnightOne/patch-1

Fixed Copy Commands
This commit is contained in:
Matt Walsh 2023-05-31 21:11:19 -05:00 committed by GitHub
commit 3b050073ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,9 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json .
COPY package.json .
COPY package-lock.json .
RUN npm ci
COPY . .