7 lines
No EOL
110 B
Docker
7 lines
No EOL
110 B
Docker
FROM node:alpine
|
|
WORKDIR /Project
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm install -g typescript
|
|
RUN tsc
|
|
CMD npm start |