Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/hishtory-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
unset GOPATH; go build -o /server -ldflags "-X main.ReleaseVersion=v0.`cat VERSION`" backend/server/server.go

## TODO: change to an actual tag when this has an actual tag.
FROM ghcr.io/trueforge-org/postgresql-client:rolling@sha256:9096db20fdeb452347a1ea16e5dda8a21d6aba03f63b79c2c694f13e72d213b6
FROM ghcr.io/trueforge-org/postgresql-client:rolling@sha256:631fb4324c38b66293f0951b7b40171ac892a400293330bc41301e3bbe702296

# set version label
ARG VERSION
Expand All @@ -30,6 +30,6 @@
USER apps

COPY --from=builder /server /app/server
COPY . /

Check warning on line 33 in apps/hishtory-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build hishtory-server / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 33 in apps/hishtory-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build hishtory-server / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 8080