Skip to content

Commit

Permalink
fix: Docker distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Dec 17, 2023
1 parent b6eba21 commit 35d3a7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Please read https://github.com/holtwick/briefing/blob/master/docs/installation/docker.md for proper use of Docker

FROM node:18-alpine
FROM node:20-alpine
COPY . /app
# COPY docker-package.json /app/package.json
WORKDIR /app
Expand Down
3 changes: 2 additions & 1 deletion docs/installation/docker.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Docker

A public docker image is available via [hub.docker.com/r/holtwick/briefing](https://hub.docker.com/r/holtwick/briefing).
> [!NOTE] Docker Image
> A public docker image is available at [hub.docker.com/r/holtwick/briefing](https://hub.docker.com/r/holtwick/briefing).
With a [Docker Engine installed](https://docs.docker.com/engine/install/) use it like this:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"serve": "cross-env ZEED=* LEVEL=i node dist/main.cjs",
"start": "cross-env DEBUG=1 ZEED=* LEVEL=a zerva src/zerva/index.ts",
"test": "vitest",
"upload:dockerhub": "nr build:docker && cd docker && docker login -u holtwick && docker buildx build --platform linux/arm64,linux/amd64,linux/s390x,linux/arm/v7,linux/arm/v6 -t holtwick/briefing:$npm_package_version -t holtwick/briefing:latest --push ."
"upload:dockerhub": "nr build:docker && (cd docker && docker login -u holtwick && docker buildx build --platform linux/arm64,linux/amd64,linux/s390x,linux/arm/v7,linux/arm/v6 -t holtwick/briefing:$npm_package_version -t holtwick/briefing:latest --push .)"
},
"dependencies": {
"@sentry/browser": "^7.60.0",
Expand Down

1 comment on commit 35d3a7b

@jangrewe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, i was just about to try Briefing out, but it looks like this fix didn't work? There's only a 3.1.10 image ;-)

Please sign in to comment.