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/dnslink-api/Dockerfile

13 lines
154 B
Docker
Raw Normal View History

FROM node:16.9.1-alpine
2021-06-25 12:05:36 +00:00
WORKDIR /usr/app
2021-07-26 12:00:20 +00:00
COPY package.json yarn.lock ./
2021-07-26 11:28:27 +00:00
2021-07-26 17:06:15 +00:00
RUN yarn --frozen-lockfile
2021-07-26 11:28:27 +00:00
2021-06-25 12:05:36 +00:00
COPY src/* src/
EXPOSE 3100
2021-07-26 12:12:33 +00:00
CMD node src/index.js