Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/build-docker-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
with:
push: true
tags: |
ghcr.io/venil7/assets:nightly
ghcr.io/venil7/assets:${{ env.BUILD_TAG }}

# builds release image, pushes under version and latest tags
Expand Down
37 changes: 0 additions & 37 deletions API.md

This file was deleted.

5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ RUN go install -tags 'sqlite3' github.com/golang-migrate/migrate/v4/cmd/migrate@
FROM oven/bun:1.3 AS builder
WORKDIR /app
COPY . .
RUN apt-get update \
&& apt-get install -y \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN bun install
RUN bun run check
RUN bun run build
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ bun run check # Lint and type-check all packages
**Build Docker image locally:**

```bash
# export DOCKER_API_VERSION=1.43
docker buildx build -t assets:local .
```

Expand Down
Loading
Loading