Sign inSign up

yaroslaww1/node-backend

By yaroslaww1

Updated about 6 years ago

Image
0

158

yaroslaww1/node-backend repository overview

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" ]

Tag summary

Content type

Image

Digest

Size

83.8 MB

Last updated

about 6 years ago

docker pull yaroslaww1/node-backend