mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
added build steps
This commit is contained in:
15
nextjs/Dockerfile
Normal file
15
nextjs/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json .
|
||||
|
||||
RUN npm i
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN mkdir -p storage
|
||||
|
||||
RUN npm run build
|
||||
|
||||
CMD [ "npm", "run", "start" ]
|
||||
Reference in New Issue
Block a user