Files
CDN-APP-INSIDER/Dockerfile
Dinawo e573892cd7
Some checks failed
continuous-integration/drone/push Build is failing
Remove unnecessary commands and files in Dockerfile
2024-03-29 09:19:54 +01:00

13 lines
129 B
Docker

FROM node:14
WORKDIR /app/cdn-app-insider
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5053
CMD [ "npm", "start" ]