2024-12-10 22:50:15 +00:00
|
|
|
FROM node:18-alpine
|
|
|
|
LABEL org.opencontainers.image.title="db-vendo-client"
|
|
|
|
LABEL org.opencontainers.image.description="A clean REST API wrapping around the new Deutsche Bahn API."
|
|
|
|
LABEL org.opencontainers.image.authors="Traines <git@traines.eu>"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/public-transport/db-vendo-client"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/public-transport/db-vendo-client"
|
|
|
|
LABEL org.opencontainers.image.licenses="ISC"
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# install dependencies
|
2024-12-17 15:39:56 +00:00
|
|
|
#RUN apk add --update git
|
|
|
|
ADD package.json package-lock.json /app/
|
|
|
|
RUN npm install && npm cache clean --force
|
2024-12-10 22:50:15 +00:00
|
|
|
|
|
|
|
# add source code
|
|
|
|
ADD . /app
|
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
|
|
ENV HOSTNAME v6.db.transport.rest
|
|
|
|
ENV PORT 3000
|
|
|
|
|
|
|
|
VOLUME /logs/
|
|
|
|
|
2024-12-18 02:18:13 +00:00
|
|
|
CMD ["/bin/sh", "-c", "node api.js >> /logs/db-vendo.log 2>&1"]
|