mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 03:22:19 +03:00
171d0a6c5c
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
13 lines
137 B
Docker
13 lines
137 B
Docker
FROM node:14
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY ./lib ./lib
|
|
|
|
EXPOSE 3333
|
|
CMD [ "node", "lib/server.js" ]
|