Files
CDN-APP-INSIDER/Dockerfile
Dinawo 9a5b4c20cb
All checks were successful
continuous-integration/drone/push Build is passing
Update Dockerfile and docker-compose.yml to use new directory structure
2024-04-14 16:22:10 +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" ]