db-rest/Dockerfile

39 lines
954 B
Docker
Raw Permalink Normal View History

2020-05-01 20:17:07 +02:00
FROM node:alpine as builder
2017-10-23 23:13:53 +02:00
WORKDIR /app
# install dependencies
2020-05-01 20:17:07 +02:00
RUN apk add --update git bash
ADD package.json /app
RUN npm install
# build documentation
ADD . /app
RUN npm run build
# ---
2020-05-01 20:17:07 +02:00
FROM node:alpine
2021-10-19 11:20:19 +02:00
LABEL org.opencontainers.image.title="db-rest"
LABEL org.opencontainers.image.description="A clean REST API wrapping around the Deutsche Bahn API."
LABEL org.opencontainers.image.authors="Jannis R <mail@jannisr.de>"
LABEL org.opencontainers.image.documentation="https://github.com/derhuerst/db-rest/tree/5"
LABEL org.opencontainers.image.source="https://github.com/derhuerst/db-rest"
LABEL org.opencontainers.image.revision="5"
LABEL org.opencontainers.image.licenses="ISC"
2020-05-01 20:17:07 +02:00
WORKDIR /app
2017-10-23 23:13:53 +02:00
# install dependencies
ADD package.json /app
RUN npm install --production && npm cache clean --force
# add source code
ADD . /app
COPY --from=builder /app/docs ./docs
2017-10-23 23:13:53 +02:00
EXPOSE 3000
2020-04-30 15:05:18 +02:00
ENV HOSTNAME v5.db.transport.rest
2017-10-23 23:13:53 +02:00
ENV PORT 3000
CMD ["node", "index.js"]