HOTFIX: Add ending slash to copy commands

This commit is contained in:
Stephan
2021-11-15 08:48:37 +01:00
committed by GitHub
parent 3eb8e8bbbc
commit 8f85f062d7
+2 -2
View File
@@ -6,7 +6,7 @@ FROM node:17-alpine3.12
RUN mkdir /app
# Copy dependency files
COPY package.json package-lock.json /app
COPY package.json package-lock.json /app/
# Change directory into the container
WORKDIR /app
@@ -19,7 +19,7 @@ RUN npm i
ADD prisma/ /app/prisma/
ADD scripts/ /app/scripts/
ADD src/ /app/src/
COPY tsconfig.json /app
COPY tsconfig.json /app/
# Generate the prisma client
RUN npx prisma generate