File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ FROM node:jod-alpine as base
22
33RUN apk --no-cache add git python3 make gcc musl-dev g++ bash
44WORKDIR /app/genesis
5- COPY genesis/ package*.json ./
5+ COPY package*.json ./
66RUN npm ci
77
88FROM node:jod-alpine as release
99
1010COPY --from=base --chown=node:node /app/genesis /app/genesis
1111WORKDIR /app/genesis
12- COPY --chown=node:node genesis/ .
12+ COPY --chown=node:node . .
1313
1414# # Add the wait script to the image to wait for the database to be available
1515ADD --chown=node:node https://github.com/ufoscout/docker-compose-wait/releases/download/2.7.3/wait /wait
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ FROM node:jod-alpine as base
22
33RUN apk --no-cache add git python3 make gcc musl-dev g++ bash
44WORKDIR /app/genesis
5- COPY genesis/ package*.json ./
5+ COPY package*.json ./
66RUN npm ci
77
88FROM node:jod-alpine as release
99
1010COPY --from=base --chown=node:node /app/genesis /app/genesis
1111WORKDIR /app/genesis
12- COPY --chown=node:node genesis/ .
12+ COPY --chown=node:node . .
1313
1414# # Add the wait script to the image to wait for the database to be available
1515ADD --chown=node:node https://github.com/ufoscout/docker-compose-wait/releases/download/2.7.3/wait /wait
You can’t perform that action at this time.
0 commit comments