fixed : logging.js was missing

This commit is contained in:
nicobo 2021-06-10 22:16:52 +02:00
parent 752af10b20
commit a04ca43fcd
No known key found for this signature in database
GPG key ID: 2581E71C5FA5285F

View file

@ -10,8 +10,8 @@ RUN npm install --production
FROM ${BASEIMAGE}
EXPOSE 41100/udp
CMD [ "node", "index.js" ]
ENTRYPOINT [ "node", "index.js" ]
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/node_modules ./node_modules/
COPY index.js package.json ./
COPY index.js logging.js package*.json ./
COPY scripts/* ./scripts/