Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (10 loc) · 206 Bytes

TestDockerfile.md

File metadata and controls

20 lines (10 loc) · 206 Bytes

FROM node:18.16-alpine

WORKDIR /app

COPY . /app

RUN rm -rf node_modules

RUN npm install -g typescript

RUN npm install --legacy-peer-deps

RUN npm run build

COPY . .

EXPOSE 8080

CMD ["npm", "start"]