-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
38 lines (29 loc) · 963 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM node:18-alpine as builder
WORKDIR /app
# install dependencies
RUN apk add --update git bash
ADD package.json /app
RUN npm install
# build documentation
ADD . /app
RUN npm run build
# ---
FROM node:18-alpine
LABEL org.opencontainers.image.title="bvg-rest"
LABEL org.opencontainers.image.description="An HTTP API for Berlin & Brandenburg public transport."
LABEL org.opencontainers.image.authors="Jannis R <mail@jannisr.de>"
LABEL org.opencontainers.image.documentation="https://github.com/derhuerst/bvg-rest/tree/6"
LABEL org.opencontainers.image.source="https://github.com/derhuerst/bvg-rest"
LABEL org.opencontainers.image.revision="6"
LABEL org.opencontainers.image.licenses="ISC"
WORKDIR /app
# 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
EXPOSE 3000
ENV HOSTNAME v6.bvg.transport.rest
ENV PORT 3000
CMD ["node", "index.js"]