source: docker_server.Dockerfile

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

Code cleanings

  • 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.