mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-07-17 11:00:10 +00:00
* Explicitely define image sources Explicitely refering to docker.io will make the build succeed on software such as podman which does not default to docker.io as the standard image source * Dockerfiles: use the full legal docker.io/library name just in case Signed-off-by: Xe Iaso <[email protected]> * update CHANGELOG Signed-off-by: Xe Iaso <[email protected]> --------- Signed-off-by: Xe Iaso <[email protected]> Co-authored-by: Xe Iaso <[email protected]>
10 lines
252 B
Docker
10 lines
252 B
Docker
FROM docker.io/library/node AS build
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN npm ci && npm run build
|
|
|
|
FROM docker.io/library/nginx:alpine
|
|
COPY --from=build /app/build /usr/share/nginx/html
|
|
LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis" |