copied the code from the working repo
This commit is contained in:
12
mtucijobsbot/Dockerfile
Normal file
12
mtucijobsbot/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM node:21.5.0-alpine3.19
|
||||
|
||||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
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