Move all files to fractal/
This commit is contained in:
parent
35837b6c3f
commit
666b9de29b
18 changed files with 0 additions and 0 deletions
20
Dockerfile
20
Dockerfile
|
|
@ -1,20 +0,0 @@
|
|||
FROM node:20-bullseye-slim AS base
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN mkdir /node_modules \
|
||||
&& chown node:node -R /app /node_modules
|
||||
|
||||
COPY --chown=node:node package*.json *yarn* /app
|
||||
|
||||
USER node
|
||||
|
||||
################################################################################
|
||||
|
||||
FROM base AS build
|
||||
|
||||
RUN yarn install --frozen-lockfile
|
||||
|
||||
COPY --chown=node:node . .
|
||||
|
||||
CMD ["bash"]
|
||||
Reference in a new issue