Dockerfile: fix image metadata 🐛
This commit is contained in:
parent
d04dd1622c
commit
b1a4d0ad09
1 changed files with 7 additions and 7 deletions
14
Dockerfile
14
Dockerfile
|
@ -1,11 +1,4 @@
|
||||||
FROM node:alpine as builder
|
FROM node:alpine as builder
|
||||||
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"
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# install dependencies
|
# install dependencies
|
||||||
|
@ -20,6 +13,13 @@ RUN npm run build
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
FROM node:alpine
|
FROM node:alpine
|
||||||
|
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"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# install dependencies
|
# install dependencies
|
||||||
|
|
Loading…
Reference in a new issue