From 3913c1c91e37989fe32ac6d37737c334cd32fdfa Mon Sep 17 00:00:00 2001 From: Callum Gare Date: Wed, 18 May 2022 22:35:51 +1000 Subject: [PATCH] Add gitlab action steps to build and push docker --- .github/workflows/pre-release.yaml | 21 +++++++++++++++++++-- Dockerfile | 15 ++++++++++----- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 8e2748f..0fa849f 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -22,7 +22,6 @@ jobs: with: go-version: 1.16 - - name: "Build & test" run: "make tools release-artifacts" @@ -34,4 +33,22 @@ jobs: title: "Development Build" files: | LICENSE - builds/dist/* \ No newline at end of file + builds/dist/* + + - uses: docker/setup-qemu-action@v1 + + - uses: docker/setup-buildx-action@v1 + + - uses: docker/login-action@v1 + with: + username: "${{ secrets.DOCKER_HUB_USER }}" + password: "${{ secrets.DOCKER_HUB_TOKEN }}" + + - name: "Build and push docker image" + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm/v7,linux/arm64 + push: true + tags: "${{ secrets.DOCKER_REPO }}:latest" \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 565e142..bd4b7dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,20 @@ -FROM golang:1.16 +FROM node:16 as js-build +WORKDIR /gotty +COPY js /gotty/js +COPY Makefile /gotty/ +RUN make bindata/static/js/gotty.js.map +FROM golang:1.16 as go-build WORKDIR /gotty COPY . /gotty +COPY --from=js-build /gotty/js/node_modules /gotty/js/node_modules +COPY --from=js-build /gotty/bindata/static/js /gotty/bindata/static/js RUN CGO_ENABLED=0 make FROM alpine:latest - RUN apk update && \ apk upgrade && \ - apk --no-cache add ca-certificates && \ - apk add bash + apk --no-cache add ca-certificates bash WORKDIR /root -COPY --from=0 /gotty/gotty /usr/bin/ +COPY --from=go-build /gotty/gotty /usr/bin/ CMD ["gotty", "-w", "bash"]