Ajouter 'src/Api/Dockerfile'
continuous-integration/drone/push Build is passing Details

pull/19/head
Emre KARTAL 2 years ago
parent b3455962b0
commit 7e957c8cbf

@ -0,0 +1,9 @@
FROM node:latest
WORKDIR /Api
ADD package.json /Api
ADD tsconfig.json /Api
ADD . /Api
RUN npm install
RUN npm run build
EXPOSE 8080
CMD [ "node","." ]
Loading…
Cancel
Save