Rename for case

This commit is contained in:
2024-01-10 13:01:52 -05:00
parent 2d779061cd
commit 1bbcf496b3

View File

@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
RUN npm run build
CMD ["npm", "run", "dist"]