copied the code from the working repo
This commit is contained in:
16
mtucijobsweb2/Dockerfile
Normal file
16
mtucijobsweb2/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM node:21.5.0-alpine3.19
|
||||
|
||||
ARG APP_BASE_URL
|
||||
|
||||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
ENV APP_BASE_URLL=$APP_BASE_URL
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm i
|
||||
COPY . .
|
||||
|
||||
RUN npm run build
|
||||
|
||||
EXPOSE 3000
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user