About
This image builds typescript express app.
Source
FROM node:13.12.0-alpine
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
COPY tsconfig.json ./
RUN npm install
RUN npm install -g typescript@^3.8
COPY . ./
RUN tsc
EXPOSE 3330
CMD [ "node", "./build/index.js" ]