ktvmanager/.dockerfile

18 lines
232 B
Plaintext
Raw Permalink Normal View History

2021-02-06 16:33:42 +00:00
FROM node:12-alpine
LABEL version="1.0"
LABEL description="DNS BACKEND"
WORKDIR /app
COPY ["package.json", "package-lock.json", "./"]
RUN ls
RUN npm i
2021-03-12 13:56:26 +00:00
# RUN apk --no-cache add curl
2021-02-06 16:33:42 +00:00
COPY . .
EXPOSE 3001
CMD ["node", "bin/www"]