Files
CDN-APP-INSIDER/Dockerfile
Dinawo a09fc0f2cc
All checks were successful
continuous-integration/drone/push Build is passing
Update PORT variable to use process.env.PORT or 5053
2024-03-27 18:23:55 +01:00

14 lines
114 B
Docker

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