Files
CDN-APP-INSIDER/Dockerfile
Dinawo 805745cf0e
All checks were successful
continuous-integration/drone/push Build is passing
Update Dockerfile to remove unnecessary directory creation
2024-04-17 23:34:21 +02: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" ]