This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/health-check/Dockerfile

13 lines
213 B
Docker
Raw Normal View History

2020-10-30 09:25:37 +00:00
FROM node:14.15.0-alpine
2020-07-30 12:23:49 +00:00
WORKDIR /usr/app
COPY package.json .
RUN yarn --no-lockfile
2020-09-09 14:08:10 +00:00
COPY src src
COPY cli cli
2020-07-30 12:23:49 +00:00
EXPOSE 3100
ENV NODE_ENV production
2020-09-09 12:25:00 +00:00
CMD [ "node", "--max-http-header-size=64000", "src/index.js" ]