Skip to content

Commit

Permalink
Dockerfile added
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed Feb 4, 2020
1 parent 11cc634 commit df2759a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM node:13.7

RUN apt-get update && \
apt-get install -y lsof vim ts-node typescript

WORKDIR /code/

ADD package-lock.json /code/package-lock.json
ADD package.json /code/package.json

RUN npm install

ADD memserver-boilerplate /code/memserver-boilerplate
ADD src /code/lib
RUN npm run build
ADD . /code/

ENTRYPOINT "/bin/bash"

0 comments on commit df2759a

Please sign in to comment.