Move all files to fractal/

This commit is contained in:
Oliver Davies 2025-09-29 22:16:27 +01:00
parent 35837b6c3f
commit 666b9de29b
18 changed files with 0 additions and 0 deletions

20
fractal/Dockerfile Normal file
View file

@ -0,0 +1,20 @@
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"]