platform/pods/account/Dockerfile
Andrey Platov bdf41f17d4
initial account pod
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
2021-09-10 12:26:11 +02:00

10 lines
93 B
Docker

FROM node
WORKDIR /usr/src/app
COPY bundle.js ./
EXPOSE 3000
CMD [ "node", "bundle.js" ]