Files
api/Dockerfile

11 lines
109 B
Docker

FROM node:alpine
COPY . /server
WORKDIR /server
RUN npm i
EXPOSE 7272
CMD tsc --watch;node dist/index.js