-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added production docker image for Tavern (#124)
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Publish docker images when new releases come out | ||
|
||
name: Publish Docker Images (on release) | ||
|
||
on: | ||
push: | ||
branches: ['release'] | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: realm/tavern | ||
|
||
jobs: | ||
tavern-docker: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
file: ./docker/tavern.Dockerfile | ||
context: . | ||
push: true | ||
target: production | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Dependency Cache | ||
FROM golang:1.20.1-buster as base | ||
WORKDIR /app | ||
RUN mkdir -p /app/build /app/cdn | ||
COPY ./go.mod /app/go.mod | ||
COPY ./go.sum /app/go.sum | ||
RUN go mod download | ||
|
||
# Build Cache | ||
FROM base as build-cache | ||
COPY ./tavern /app/tavern | ||
|
||
# Production Build | ||
FROM build-cache as prod-build | ||
RUN go build -ldflags='-w -extldflags "-static"' -o /app/build/tavern ./tavern | ||
|
||
# Production | ||
FROM debian:buster as production | ||
WORKDIR /app | ||
CMD ["/app/tavern"] | ||
EXPOSE 80 443 8080 | ||
RUN apt-get update -y && apt-get install -y ca-certificates | ||
COPY --from=prod-build /app/build/tavern /app/tavern |