ktvmanager/client/.dockerfile

19 lines
253 B
Plaintext
Raw Normal View History

2021-02-06 16:33:42 +00:00
FROM node:12-alpine
LABEL version="1.0"
LABEL description="FRONTEND"
WORKDIR /app
COPY ["package.json", "package-lock.json", "./"]
ENV PORT=6969
2021-03-12 13:56:26 +00:00
# RUN apk --no-cache add curl
2021-02-06 16:33:42 +00:00
RUN npm install --production
COPY . .
EXPOSE 6969
CMD ["npm", "start"]