Skip to content

Commit

Permalink
Merge pull request #43 from AlexSciFier/Dockerfile-user-permissions
Browse files Browse the repository at this point in the history
Dockerfile user permissions
  • Loading branch information
AlexSciFier authored Jun 19, 2023
2 parents 50ec541 + 6992f35 commit 1118f62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ COPY ./server/package*.json ./
RUN npm ci --only=production

FROM node:16-alpine

USER node
WORKDIR /app
COPY ./server ./
COPY --from=build /app/server ./
COPY --from=ui-build /app/client/build ./public
COPY --chown=node ./server ./
COPY --chown=node --from=build /app/server ./
COPY --chown=node --from=ui-build /app/client/build ./public

ENV PORT=3333
ENV FASTIFY_BODY_LIMIT=5242880
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/helpers/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const APP_NAME = "NeonLink";
export const VERSION = "1.2.7";
export const VERSION = "1.2.8";
export const DEF_MAX_ITEMS = 20;
export const DEF_COLUMNS = 3;
export const CARD_HEADER_STYLE = [
Expand Down

0 comments on commit 1118f62

Please sign in to comment.