source: server.Dockerfile@ 87614a5

main
Last change on this file since 87614a5 was 87614a5, checked in by anastasovv <simon@…>, 2 years ago

Blackjack prototype

  • Property mode set to 100644
File size: 129 bytes
Line 
1FROM node:18
2
3COPY . /usr/local/app
4
5WORKDIR /usr/local/app
6
7RUN yarn install
8
9RUN yarn run build
10
11CMD [ "yarn", "run", "start" ]
Note: See TracBrowser for help on using the repository browser.