Files
CDN-APP-INSIDER/Dockerfile
Dinawo 44e63e4265
All checks were successful
continuous-integration/drone/push Build is passing
Refactor Dockerfile and docker-compose.yml to use new directory structure
2024-04-17 23:54:51 +02:00

14 lines
137 B
Docker

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