Skip to content

Commit 2223744

Browse files
Fix Dockerfile formatting
Refs #3165
1 parent 4b8d9f3 commit 2223744

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

Dockerfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ RUN apt-get update && apt-get install --yes \
1313
COPY .npmrc ./
1414
RUN npm install --global pnpm@10
1515
COPY patches/ patches/
16-
COPY package.json \
17-
pnpm-lock.yaml \
18-
./
16+
COPY package.json pnpm-lock.yaml ./
1917

2018
#
2119
# Stage: intlc environment
@@ -72,10 +70,7 @@ FROM npm AS build-prod
7270
ENV NODE_ENV=production
7371

7472
COPY --from=npm-dev /app/node_modules/ node_modules/
75-
COPY tsconfig.build.json \
76-
tsconfig.json \
77-
webpack.config.mjs \
78-
./
73+
COPY tsconfig.build.json tsconfig.json webpack.config.mjs ./
7974
COPY src/ src/
8075
COPY assets/ assets/
8176
COPY --from=build-intlc /app/assets/locales/ assets/locales/
@@ -132,4 +127,4 @@ HEALTHCHECK --interval=5s --timeout=1s \
132127
EXPOSE 3000
133128
USER node
134129

135-
CMD [ "./hivemind", "--no-prefix" ]
130+
CMD ["./hivemind", "--no-prefix"]

0 commit comments

Comments
 (0)