Skip to content

Commit

Permalink
#none updated dockerfile, fonts location
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaribsin committed Mar 18, 2024
1 parent dc32999 commit 5cdb2c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ COPY package*.json tsconfig.json ./
RUN npm ci --quiet

COPY ./src ./src
COPY ./fonts ./fonts

# Build stage > build project, remove deps and install runtime deps
FROM base AS build
Expand All @@ -23,7 +24,7 @@ WORKDIR /home/node/app
COPY --chown=node:node --from=build /app/build ./build
COPY --chown=node:node --from=build /app/node_modules ./node_modules
COPY --chown=node:node package*.json *.config.js ./
COPY --chown=node:node --from=build /app/src/fonts ./fonts
COPY --chown=node:node --from=build /app/fonts ./fonts

# Set 'node' as owner of this directory (permits creating files eg. logs)
RUN chown -h node:node .
Expand Down
File renamed without changes.

0 comments on commit 5cdb2c0

Please sign in to comment.