mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 13:47:26 +03:00
7a9a284855
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
13 lines
134 B
Docker
13 lines
134 B
Docker
FROM node:14
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json ./
|
|
COPY index.mjs ./
|
|
|
|
RUN npm install
|
|
|
|
|
|
EXPOSE 3333
|
|
CMD [ "node", "index.mjs" ]
|